一、搭建一个简单的struts2的web项目。搭建的步骤如下:
1、 在eclipse中建立一个web项目。
2、 把相应的7个架包导入到WEB-INF下的lib文件夹中去。7个包一个都不能少。架包的下载链接是:http://download.csdn.net/detail/joy_zhao988/5159550
3、 把struts.xml导入到src文件夹下面。
4、 修改下struts.xml里面的内容:
<?xmlversion="1.0"encoding="UTF-8"?>
<!DOCTYPEstrutsPUBLIC
"-//ApacheSoftware Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constantname="struts.devMode"value="true"/>
<packagename="default"namespace="/"extends="struts-default">
<actionname="hell">
<result>
/Hello.jsp
</result>
</action>
</package>
</struts>
5、 配置web.xml文件,代码如下:
<?xmlversion="1.0" encoding="UTF-8"?>
<web-appversion="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">
<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>
</web-app>
6、 写个Hello.jsp页面。方便控制台的跳转验证。
运行结果截图如下: