首页 > 代码库 > struts2 第一次
struts2 第一次
struts-2.3.16.3, tomcat 8.0.3.0, netbeans 8.0
第一步
拷贝 jar 包 (下载的 struts 包里面有例子)
第二步
配置 web.xml
1 <!-- struts2 借用filter实现过滤--> 2 <filter> 3 <filter-name>struts2</filter-name> 4 <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class> 5 </filter> 6 7 <filter-mapping> 8 <filter-name>struts2</filter-name> 9 <url-pattern>/*</url-pattern>10 </filter-mapping>11 <!--end of struts-->
第三步
配置 struts.xml
1 <struts>2 <package name="first" extends="struts-default">3 <action name="helloworld" class="llh.example.action.HelloWorldAction" method="execute">4 <result name="success">/a.jsp</result>5 </action>6 </package>7 </struts>
package llh.example.action;/** * @author Administrator * */public class HelloWorldAction { private String message; public String getMessage() { return message; } public String execute() { message = "第一个 struts2 应用"; return "success"; }}
1 <body>2 <a href="helloworld">HelloWord</a>3 </body>
1 <body>2 ${message}3 </body>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。