1.Struts2版本为2.0.14
该版本的拦截器为org.apache.struts2.dispatcher.FilterDispatcher
web.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name></display-name>
<welcome-file-list>
<welcome-file>add.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
struts.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<!--指定Struts2处于开发阶段,可以进行调试-->
<!-- <constant name="struts.devMode" value="true"></constant> -->
<package name="default" namespace="/" extends="struts-default">
<action name="hello" class="com.cjdx.alice.action.AddAction">
<result name="cal">/add_result.jsp</result>
</action>
</package>
</struts>
2.Struts2版本为2.1
该版本的拦截器为
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
ssh框架下的web.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<display-name></display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<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>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:applicationContext*.xml</param-value>
</context-param>
</web-app>
ssh框架下的struts.xml文件
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd">
<struts>
<package name="default" namespace="/" extends="struts-default">
<action name="hello" class="edu.cjdx.action.helloAction">
<result name="success">index.jsp</result>
<result name="false">add.jsp</result>
<result name="edit">edit.jsp</result>
</action>
</package>
</struts>
注:
1.400错误多为struts.xml文件配置错误
2.服务器拒绝连接:检查端口,路径
3. Action访问路径: 缺省以.action结尾(即,路径为localhost:端口号/项目名/hello.action) 也可自己配置,如:
<constant name="struts.action.extension" value="action,do,webwork"></constant>
上述配置,将使得可以通过.action或.do或.webwork访问Action对象