Fix issue with Spring Security config

This commit is contained in:
Rossen Stoyanchev
2015-10-19 16:47:12 -04:00
parent af75a7967d
commit 80e124a068
5 changed files with 6 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
<div id="modalDialogContainer">
<p class="notice">This is step 1 of the flow embedded in a modal dialog.</p>
<form id="step1" action="${flowExecutionUrl}" method="POST">
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
<button id="cancel" type="submit" name="_eventId_cancel">Cancel</button>
<button id="next" type="submit" name="_eventId_next">Next &gt;&gt;</button>
<script type="text/javascript">

View File

@@ -1,6 +1,7 @@
<div id="modalDialogContainer">
<p class="notice">This is step 2 of the flow embedded in a modal dialog.</p>
<form id="step2" action="${flowExecutionUrl}" method="POST">
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
<button id="cancel" type="submit" name="_eventId_cancel">Cancel</button>
<button id="previous" type="submit" name="_eventId_previous">&lt;&lt; Previous</button>
<button id="finish" type="submit" name="_eventId_finish">Finish &gt;&gt;</button>

View File

@@ -1,6 +1,7 @@
<div id="embeddedFlow">
<p class="notice">This is step 1 of the embedded flow</p>
<form id="step1" action="${flowExecutionUrl}" method="POST">
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
<button id="cancel" type="submit" name="_eventId_cancel">Cancel</button>
<button id="next" type="submit" name="_eventId_next">Next &gt;&gt;</button>
<script type="text/javascript">

View File

@@ -1,6 +1,7 @@
<div id="embeddedFlow">
<p class="notice">This is step 2 of the embedded flow</p>
<form id="step2" action="${flowExecutionUrl}" method="POST">
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
<button id="cancel" type="submit" name="_eventId_cancel">Cancel</button>
<button id="previous" type="submit" name="_eventId_previous">&lt;&lt; Previous</button>
<button id="finish" type="submit" name="_eventId_finish">Finish &gt;&gt;</button>

View File

@@ -4,9 +4,9 @@
xmlns:security="http://www.springframework.org/schema/security"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security-3.2.xsd">
http://www.springframework.org/schema/security/spring-security.xsd">
<!--
Configure Spring Security