服务器集群session共享配置weblogic.xml导致后台报错

服务器集群为实现session共享,在项目的WEB-INF下配置weblogic.xml文件(web.xml同目录),然后配置完成重新部署重启服务器之后项目就报错了

<weblogic-web-app xmlns="http://www.bea.com/ns/weblogic/90">
<session-descriptor>
 <debug-enabled>true</debug-enabled>
 <persistent-store-type>replicated</persistent-store-type>
 <sharing-enabled>true</sharing-enabled>
</session-descriptor>
<context-root>/</context-root>

报错是 ERROR [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] CommonsLogger.error(38) | Could not find action or resultThere is no Action mapped for namespace / and action name pay
可是我的项目中根本就没有叫做pay的namespace或action,没配置weblogic.xml的时候就不会报错,配置后连index.jsp都不能访问了......求指教个解决方案

http://bbs.csdn.net/topics/392061704