|
@@ -12,9 +12,15 @@
|
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
|
|
|
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-2.0.xsd">
|
|
|
|
|
|
+ <annotation-driven/>
|
|
|
+
|
|
|
<http auto-config="true">
|
|
|
<intercept-url pattern="/secure/extreme/**" access="ROLE_SUPERVISOR"/>
|
|
|
<intercept-url pattern="/secure/**" access="IS_AUTHENTICATED_REMEMBERED" />
|
|
|
+ <!-- Disable web URI authorization, as we're using <annotation-driven> and have @Secured the services layer instead
|
|
|
+ <intercept-url pattern="/listAccounts.html" access="IS_AUTHENTICATED_REMEMBERED" />
|
|
|
+ <intercept-url pattern="/post.html" access="ROLE_TELLER" />
|
|
|
+ -->
|
|
|
<intercept-url pattern="/**" access="IS_AUTHENTICATED_ANONYMOUSLY" />
|
|
|
|
|
|
<!-- All of this is unnecessary if auto-config="true"
|
|
@@ -32,8 +38,8 @@
|
|
|
|
|
|
<repository>
|
|
|
<user-service hash="md5-hex">
|
|
|
- <user name="rod" password="a564de63c2d0da68cf47586ee05984d7" authorities="ROLE_SUPERVISOR,ROLE_USER" /> <!-- koala -->
|
|
|
- <user name="dianne" password="65d15fe9156f9c4bbffd98085992a44e" authorities="ROLE_USER" /> <!-- emu -->
|
|
|
+ <user name="rod" password="a564de63c2d0da68cf47586ee05984d7" authorities="ROLE_SUPERVISOR,ROLE_USER,ROLE_TELLER" /> <!-- koala -->
|
|
|
+ <user name="dianne" password="65d15fe9156f9c4bbffd98085992a44e" authorities="ROLE_USER,ROLE_TELLER" /> <!-- emu -->
|
|
|
<user name="scott" password="2b58af6dddbd072ed27ffc86725d7d3a" authorities="ROLE_USER" /> <!-- wombat -->
|
|
|
<user name="peter" password="22b5c9accc6e1ba628cedc63a72d57f8" authorities="ROLE_USER" /> <!-- opal -->
|
|
|
</user-service>
|