Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE struts PUBLIC
- "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
- "http://struts.apache.org/dtds/struts-2.0.dtd">
- <struts>
- <constant name="struts.devMode" value="true" /> <!-- set to false for prod -->
- <package name="" namespace="/survey" extends="struts-default">
- <action name="Listing" class="actions.survey.Listing" method="display">
- <result name="none">/views/survey/Listing.jsp</result>
- </action>
- <action name="startInformation" class="actions.survey.Listing">
- <result name="success">/views/survey/startInformation.jsp</result>
- </action>
- <action name="beginQuestions" class="actions.survey.Listing" method="beginQuestions">
- <result name="redirect" type="redirectAction">
- <param name="actionName">Questions</param>
- <param name="namespace">/survey</param>
- <param name="parse">true</param>
- <param name="formId">${yourForm}</param>
- </result>
- </action>
- <action name="Questions" class="actions.survey.QuestionListing" method="display">
- <result name="none">/views/survey/Questions.jsp</result>
- </action>
- </package>
- </struts>
Advertisement
Add Comment
Please, Sign In to add comment