(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方法。