global-forwards的作用(转发)

在struts-config.xml的文件中我们配置了许多的action,每一个action中都可以有多个forward,当页面发送请求后,RequestProcessor会根据请求的URI到struts-config.xml中寻找相应的Action对象,Action对象会根据不同的条件得到不同的ActionForward对象,ActionServlet根据不同的ActionForward指向不同的页面。

 

如果在多个action中都有相同的forward指向相同的页面,那么这些相同的forward就可以统一的配置到global-forwards中,而不需要重复的出现在各个action中,减少配置文件的复杂性。例如:


[xhtml]  view plain copy
  1. <struts-config>  
  2.           
  3.     <global-forwards>  
  4.         <forward name="exit" path="/index.jsp"/>  
  5.     global-forwards>  
  6.     <action-mappings>  
  7.         <action path="/hello" type="com.king.action.HelloAction">  
  8.             <forward name="helloUser" path="/WEB-INF/pages/hello.jsp"/>  
  9.         action>  
  10.     action-mappings>  
  11. struts-config> 

你可能感兴趣的:(java基础知识)