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

简单的struts2框架(三)

时间:2014-10-23 11:54:28      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   for   sp   div   on   

相对于上篇博客《简单的struts2框架(二)》的改变,action的动态调用:

在struts.xml方法调用

1 <action name="userAction_*" class="action.UserAction" method="{1}">
2     <result name="success" type="dispatcher">/user/Success.jsp</result>
3     <result name="error" type="dispatcher">/user/Error.jsp</result>
4     <result name="reg_success" type="dispatcher">/user/UserLogin.jsp</result>
5 </action>

*代表的是action里相对应的方法, method="{1}"的值是第一个*的值,然后根据不同的result的那么执行不同的jsp

 

同时相对应的jsp也要改变:

<form action="/practice_struts2/useruserAction_doRegister.action" method="post">
    
        用户名:<input name="username" type="text"><br/>
        密    码:<input name="userpwd" type="password"><br/>
        出生日期:<input name="birthDate" type="text">yyyy-MM-dd<br/>
        <input type="submit" value="注册"/><input type="reset" value="重置"/>
</form>

 

从jsp和struts.xml可以清楚的看出:*代表的是doRegister方法

 

简单的struts2框架(三)

标签:style   blog   color   io   os   for   sp   div   on   

原文地址:http://www.cnblogs.com/jiuqing/p/4045207.html

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