2013-05-12 11:15:16 +03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2013-05-12 11:20:31 +03:00
|
|
|
<beans:beans xmlns="http://www.springframework.org/schema/security" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:beans="http://www.springframework.org/schema/beans"
|
|
|
|
|
xsi:schemaLocation="
|
2013-05-12 11:15:16 +03:00
|
|
|
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.1.xsd
|
|
|
|
|
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd">
|
|
|
|
|
|
2013-05-12 11:20:31 +03:00
|
|
|
<http use-expressions="true">
|
|
|
|
|
<intercept-url pattern="/login*" access="isAnonymous()" />
|
|
|
|
|
<intercept-url pattern="/**" access="isAuthenticated()" />
|
2013-05-12 11:15:16 +03:00
|
|
|
|
2013-05-12 11:20:31 +03:00
|
|
|
<http-basic />
|
|
|
|
|
|
|
|
|
|
</http>
|
2013-05-12 11:15:16 +03:00
|
|
|
|
2013-05-12 11:20:31 +03:00
|
|
|
<authentication-manager>
|
|
|
|
|
<authentication-provider>
|
|
|
|
|
<user-service>
|
|
|
|
|
<user name="user1" password="user1Pass" authorities="ROLE_USER" />
|
|
|
|
|
</user-service>
|
|
|
|
|
</authentication-provider>
|
|
|
|
|
</authentication-manager>
|
2013-05-12 11:15:16 +03:00
|
|
|
|
|
|
|
|
</beans:beans>
|