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

Struts2 HelloWorld

时间:2016-04-13 09:47:11      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:

1. VS 自实现

1) 搭建Struts2 的开发环境

2) 不需要显式的定义Filter, 而使用的是struts2 的配置文件

3) details.jsp 变得简单了

    ${requestScope.product.productId}-->${productId}

4) 步骤

  ① 由product-input.action 转到/WEB-INF/pages/input.jsp

           在struts2 中配置一个action

        <action name="product-input">
            <result>/WEB-INF/pages/input.jsp</result>
        </action>

  ② 由input.jsp 页面的 "product-save.action"  显示页面的details

        <action name="product-save" class="strutshelloworld.Product"
           method="save">
           <result name="details">/WEB-INF/pages/details.jsp</result>
        </action>

  在Product 中定义个save 方法,且返回值为details

 

 

主要流程:

技术分享

Struts2 HelloWorld

标签:

原文地址:http://www.cnblogs.com/shi-yi-ge/p/5385776.html

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