Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Complete
-
1.2.3.RELEASE, 1.2.4.RELEASE
-
Ubuntu 12.04, JDK 6, Maven 3
Description
When security setup command executed applicationContext-security.xml has:
<intercept-url pattern="/**" access="permitAll" />
Instead of configure authenticated access urls:
<intercept-url pattern="/login/**" access="permitAll" />
<intercept-url pattern="/**" access="isAuthenticated()" />
There is an exception, the login will still accesible.