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

struts2实验错误笔记

时间:2014-11-02 00:35:18      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:style   io   color   for   sp   文件   on   log   cti   

(1)struts.xml配置文件中 result的name属性要跟业务逻辑处理类(Action类)中的函数返回的字符串能匹配得上

(2)修改过struts.xml以及Action类后需要重新再服务器中更新web项目(redeploy)

(3)相同业务逻辑对应的jsp页面最好分文件夹存放,不然显得jsp文件很多很杂

(4)一个Action处理多个业务逻辑

代码:

<action name="loginAction_*" class="com.loginAction" method="{1}">
<result name="success">/success.jsp</result>
<result name="error">/error.jsp</result>
<result name="Register_error">/Register_error.jsp</result>
<result name="Register_sucess">/Register_sucess.jsp</result>
</action>

以上代码表示,当form表单的请求是loginAction_login.action时,调用login方法,请求为loginAction_register.action时,调用register方法。

struts2实验错误笔记

标签:style   io   color   for   sp   文件   on   log   cti   

原文地址:http://www.cnblogs.com/k-q-l/p/4067925.html

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