Advertisement
Javi

Struts struts-config.xml

Feb 17th, 2012
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.50 KB | None | 0 0
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2.  
  3. <!DOCTYPE struts-config PUBLIC
  4.          "-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"
  5.          "http://struts.apache.org/dtds/struts-config_1_3.dtd">
  6.  
  7. <struts-config>
  8. <!-- ================================================ Form Bean Definitions -->
  9.     <form-beans>
  10.         <form-bean name=""
  11.                    type=""/>
  12.     </form-beans>
  13. <!-- ========================================= Global Exception Definitions -->
  14.     <global-exceptions>
  15.     </global-exceptions>
  16. <!-- =========================================== Global Forward Definitions -->
  17.     <global-forwards>
  18.      
  19.         <forward name="welcome" path="/menuprincipal.do" />
  20.        
  21.     </global-forwards>
  22. <!-- =========================================== Action Mapping Definitions -->
  23.     <action-mappings>
  24.        
  25.         <action path="/menuprincipal"
  26.                 forward="/menuprincipal/index.jsp"/>
  27.          
  28.         <action
  29.             path=""
  30.             type=""
  31.             scope="request"
  32.             input=""
  33.             name=""
  34.             cancellable="true" 
  35.         >
  36.             <forward name=""
  37.                      path=""/>
  38.                      
  39.        
  40.         </action>        
  41.        
  42.    
  43.     </action-mappings>
  44.  
  45. <!-- ======================================== Message Resources Definitions -->
  46.                        
  47.     <message-resources parameter="MessageResources" />                  
  48.                        
  49.     <message-resources
  50.             key=""
  51.             null="false"
  52.             parameter="" />
  53.                                  
  54.    
  55. </struts-config>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement