weblogic10 怎么部署web项目
我项目部署tomcat6好好的.
部署到weblogic10就不行了,
web.xml中配置如下 但是启动好后无法访问struts2.xml里配置的action,其实是没有加载到struts2.xml
<filter>
     <filter-name>struts2</filter-name>
     <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
     <init-param>
       <param-name>config</param-name>
       <param-value>
		    struts-default.xml,
         	struts-plugin.xml,
         	../config/struts/struts2.xml
		   </param-value>
     </init-param>
   </filter>
网上有遇到一样的问题的人
------解决方案--------------------
我们的配置都是放在src/struts.xml里面在的