redirect重定向的路径不能在WEB-INF目录下,WEB-INF目录下使用的是dispatcher跳转.
example:
登录页面,用户登录错误时候,采用重定向redirect方式,返回到登录界面
plaintext定向视图时候将视图源码输出
<action name="redirect"> <!-- 默认class为 ActionSurport 默认 方法为excute result默认值是success -->
<result type="redirect">/redirect.jsp?username=${username}</result><!-- 默认请求转发类似 dispatcher -->
</action>