Index: gssDemo1/src/main/resources/applicationContext-security.xml
===================================================================
--- gssDemo1/src/main/resources/applicationContext-security.xml (revision 156)
+++ gssDemo1/src/main/resources/applicationContext-security.xml (working copy)
@@ -13,9 +13,11 @@
<aop:aspectj-autoproxy proxy-target-class="true"/>
<beans:bean class="com.gwt.ss.GwtExceptionTranslator"/>
<global-method-security pre-post-annotations="disabled" secured-annotations="enabled" jsr250-annotations="enabled"/>
+
+ <http pattern="/**/demo1" security="none"/>
+
<http auto-config="false" use-expressions="true" disable-url-rewriting="true">
<intercept-url pattern="/**/staff" access="hasRole('ROLE_STAFF')" requires-channel="any"/>
- <intercept-url pattern="/**/demo1" filters="none"/>
<intercept-url pattern="/secured/**" access="hasRole('ROLE_STAFF')" requires-channel="any"/>
<form-login login-page="/login.jsp" authentication-failure-url="/login.jsp?authfailed=true"/>
<!--when using GwtLogout[Async] process Logout,must config success-handler-ref instead of logout-success-url-->
Index: gssDemo2/src/main/resources/applicationContext-security.xml
===================================================================
--- gssDemo2/src/main/resources/applicationContext-security.xml (revision 156)
+++ gssDemo2/src/main/resources/applicationContext-security.xml (working copy)
@@ -13,9 +13,11 @@
<aop:aspectj-autoproxy proxy-target-class="true"/>
<beans:bean class="com.gwt.ss.GwtExceptionTranslator"/>
<global-method-security pre-post-annotations="disabled" secured-annotations="enabled" jsr250-annotations="enabled"/>
+
+ <http pattern="/**/demo2" security="none"/>
+
<http auto-config="false" use-expressions="true" disable-url-rewriting="true">
<intercept-url pattern="/**/staff" access="hasRole('ROLE_STAFF')" requires-channel="any"/>
- <intercept-url pattern="/**/demo2" filters="none"/>
<intercept-url pattern="/secured/**" access="hasRole('ROLE_STAFF')" requires-channel="any"/>
<form-login login-page="/gwtsl/login" authentication-failure-url="/gwtsl/login?authfailed=true"/>
<!--when using GwtLogout[Async] process Logout,must config success-handler-ref instead of logout-success-url-->
Index: gssDemo3/src/main/resources/applicationContext-security.xml
===================================================================
--- gssDemo3/src/main/resources/applicationContext-security.xml (revision 156)
+++ gssDemo3/src/main/resources/applicationContext-security.xml (working copy)
@@ -13,9 +13,11 @@
<aop:aspectj-autoproxy proxy-target-class="false"/>
<beans:bean class="com.gwt.ss.GwtExceptionTranslator"/>
<global-method-security pre-post-annotations="disabled" secured-annotations="enabled" jsr250-annotations="enabled"/>
+
+ <http pattern="/**/demo3" security="none" />
+
<http auto-config="false" use-expressions="true" disable-url-rewriting="true">
<intercept-url pattern="/**/staff" access="hasRole('ROLE_STAFF')" requires-channel="any"/>
- <intercept-url pattern="/**/demo3" filters="none"/>
<intercept-url pattern="/secured/**" access="hasRole('ROLE_STAFF')" requires-channel="any"/>
<form-login login-page="/mvc/login" authentication-failure-url="/mvc/login?authfailed=true" login-processing-url="/mvc/j_spring_security_check"/>
<logout invalidate-session="true" success-handler-ref="logoutSuccessHandler" logout-url="/mvc/j_spring_security_logout"/>