1).struts2的基本配置:
1、找到\struts-2.3.14.2\apps\struts2-blank.war并解压
2、找到刚刚解压的struts2-blank\lib的jar包并导入到你的项目中去
4、找到struts2-blank\struts.xml 复制到你的项目中src\
1、找到\struts-2.3.14.2\apps\struts2-blank.war并解压
2、找到刚刚解压的struts2-blank\lib的jar包并导入到你的项目中去
3、找到struts2-blank\web.xml把<filter>的配置复制到你项目中的web.xml中
<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>
4、找到struts2-blank\struts.xml 复制到你的项目中src\
5、配置你的struts.xml
<struts>
<!-- 这个标签可以再你改动action的时候不需要启动服务器就行(开发模式) -->
<constant name="struts.devMode" value="true" />
<package name="default" namespace="/" extends="struts-default">
<action name="helloWorld" >
<result>
/hello.jsp
</result>
</action>
</package>
<!-- Add packages here -->
</struts>
6、在你的浏览器中输入http://localhost:8888/struts2_01/helloWorld.action
就可以访问到hello.jsp中的内容了。
注:helloWorld.action中的action可以省略不写