当前位置: 代码迷 >> Web前端 >> s2sh 整合 有关问题 解决办法 附web.xml 文件
  详细解决方案

s2sh 整合 有关问题 解决办法 附web.xml 文件

热度:819   发布时间:2012-10-26 10:30:58.0
s2sh 整合 问题 解决方法 附web.xml 文件
1JDK设置问题 tomcat 端口最好不要设为80 也不要设成8080以免与Oracle冲突

2包冲突问题 asm asm-2.2.3 cglib-2.1.3 cglib-nodep-2.1_3 xerces-2.6.2

3web.xml  struts.xml 版本声明是否对应 (注意复制其它文件夹时版本对应,最好不要全不复制) 可以从all-in-one 的包中的app下的例子中复制以保证版本对应,还可能尝试使用其它的过滤器,如:
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>

<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>

4web.xml 文件参考经过struts2.1.6 spring2.5 hibernate3.2整合测试可用

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

<filter>
<filter-name>struts2</filter-name>
<!--<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
--><filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>

<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>


<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

   <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
 
</web-app>
  相关解决方案