Skip to content

Commit

Permalink
Merge branch 'feature/move-jsps-under-webinf' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszlenart committed Apr 14, 2014
2 parents 90eb79a + 0b510ca commit 54c9efc
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
<default-action-ref name="HelloWorld" />

<action name="HelloWorld" class="${package}.example.HelloWorld">
<result>/example/HelloWorld.jsp</result>
<result>/WEB-INF/example/HelloWorld.jsp</result>
</action>

<action name="Login_*" method="{1}" class="${package}.example.Login">
<result name="input">/example/Login.jsp</result>
<result name="input">/WEB-INF/example/Login.jsp</result>
<result type="redirectAction">Menu</result>
</action>

<action name="*" class="${package}.example.ExampleSupport">
<result>/example/{1}.jsp</result>
<result>/WEB-INF/example/{1}.jsp</result>
</action>

<!-- Add additional "example" package actions here. -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
<default-action-ref name="index" />

<action name="index" class="${package}.IndexAction">
<result>/jsp/index.jsp</result>
<result>/WEB-INF/jsp/index.jsp</result>
</action>

<action name="helloWorld" class="helloWorldAction">
<result name="input">/jsp/index.jsp</result>
<result>/jsp/helloWorld.jsp</result>
<result>/WEB-INF/jsp/helloWorld.jsp</result>
</action>

</package>
Expand Down

0 comments on commit 54c9efc

Please sign in to comment.