标签:
Struts2 配置
1.首先建立一个Web Project
2.将struts提供的jar包,放到lib目录下(添加必须要使用的,额外的不加,防止出现问题)
必须使用的jar包:
3.新建jsp页面,在进行web.xml配置,使struts融入进去
<filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPreparAndExecuteFilter</filter-class> </filter> <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
4.在src目录下建立struts.xml,配置struts的xml(打开你安装的struts2里面的apps内的任何一个包,找到struts.xml文件,复制其标签和头部标签)
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
"http://struts.apache.org/dtds/struts-2.3.dtd"> <struts> <package name="struts2" extends="struts-default"> <action name="login" class="com.liule.struts2.LoginAction"> <result name="success"></result> </action> </package> </struts>
5.在src目录下建立一个包com.liule.struts2,再建立个.class文件(LoginAction.java)
6.将应用部署到服务器上,配置服务器的server.xml
<Context path="/struts2" doBase="D:\MyEclipse Professional\test\WebRoot" reloadable="true/>"
标签:
原文地址:http://www.cnblogs.com/liu-Gray/p/4922264.html