作者在 2018-05-13 13:43:11 发布以下内容
视图控制器
常用结果类型
difpatcher:默认结果类型,后台使用RequestDispatcher转发请求
redirect:后台使用的secdRedirect()将请求重定向至指定的URL
redirectAction:主要用于重定向到Action
<result type="redirect"></result>
通过值判断跳到哪个页面
<result type="redirectAction">${nextDispose}</result> //报错位置${nextDispose},可以无视。
全局结果
>>实现同一个包中多个action共享一个结果
<struts>
<package name="dufault" extends="struts-dufault">
<global-results>
<result name="error">/page/error.jsp</result>
<result name="login" type="redirect">/page/login.jsp</result>
</global-results>
...省略action的配置...
</package>
</struts>
注意global-results在package中的顺序位置,default的后面,Action的前面