tdmcginley

struts.xml

May 13th, 2011
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE struts PUBLIC
  3. "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
  4. "http://struts.apache.org/dtds/struts-2.0.dtd">
  5.  
  6. <struts>
  7. <constant name="struts.devMode" value="true" /> <!-- set to false for prod -->
  8.  
  9. <package name="" namespace="/survey" extends="struts-default">
  10.  
  11. <action name="Listing" class="actions.survey.Listing" method="display">
  12. <result name="none">/views/survey/Listing.jsp</result>
  13. </action>
  14.  
  15. <action name="startInformation" class="actions.survey.Listing">
  16. <result name="success">/views/survey/startInformation.jsp</result>
  17. </action>
  18.  
  19. <action name="beginQuestions" class="actions.survey.Listing" method="beginQuestions">
  20. <result name="redirect" type="redirectAction">
  21. <param name="actionName">Questions</param>
  22. <param name="namespace">/survey</param>
  23. <param name="parse">true</param>
  24. <param name="formId">${yourForm}</param>
  25. </result>
  26. </action>
  27.  
  28. <action name="Questions" class="actions.survey.QuestionListing" method="display">
  29. <result name="none">/views/survey/Questions.jsp</result>
  30. </action>
  31.  
  32. </package>
  33. </struts>
Advertisement
Add Comment
Please, Sign In to add comment