首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

weblogic10 如何部署web项目

2012-11-04 
weblogic10 怎么部署web项目我项目部署tomcat6好好的.部署到weblogic10就不行了,web.xml中配置如下 但是启

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里面在的

热点排行