码迷,mamicode.com
首页 > 其他好文 > 详细

struts2 第一次

时间:2014-08-07 15:39:20      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   java   os   io   2014   

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>

bubuko.com,布布扣

bubuko.com,布布扣
package llh.example.action;

/**
 * @author Administrator
 *
 */
public class HelloWorldAction {

    private String message;

    public String getMessage() {
        return message;
    }

    public String execute() {
        message = "第一个 struts2 应用";
        return "success";
    }
}
HelloWorldAction.java
bubuko.com,布布扣
1     <body>
2         <a href="helloworld">HelloWord</a>
3     </body>
index.html
bubuko.com,布布扣
1     <body>
2         ${message}
3     </body>
a.jsp

 

struts2 第一次,布布扣,bubuko.com

struts2 第一次

标签:style   blog   http   color   java   os   io   2014   

原文地址:http://www.cnblogs.com/hualongbei/p/3897288.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!