global-forwards 是全局的forward,把一些经常使用的页面做成global,就不用每次都在action里面配置forward了,至于ForwardAction,是struts帮你写好的一个action,里面没有任何业务逻辑,只是跳转到一个指定的页面,如果你要只是要转发一个页面,而又要遵循从Action访问页面的话,那你就直接用这个类就行了,剩下你自己建类的麻烦
global-forwards用于配置全局转发,struts首先会在<action-mappings>元素中找对应的<forward>,若找不到,则到全局转发配置中找。它包含0个或多个<forward/>元素,格式如下所示:
Eg.
<global-forwards>
<forward name="failed" path="/error.jsp" />
<forward name="success" path="/ success.jsp" />
</global-forwards>
<forward/>元素还有一个redirect属性,其默认值为false,如果redirect设为true的时候,则用HttpServletResponse.sendRedirect()方法,否则用RequestDispatcher.forward()方法,缺省为false。
转载于:https://www.cnblogs.com/iamconan/p/7383635.html