40 lines
1.7 KiB
XML
40 lines
1.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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="
|
|
http://www.springframework.org/schema/security
|
|
http://www.springframework.org/schema/security/spring-security-4.2.xsd
|
|
http://www.springframework.org/schema/beans
|
|
http://www.springframework.org/schema/beans/spring-beans-4.3.xsd"
|
|
>
|
|
|
|
<http use-expressions="true">
|
|
<intercept-url pattern="/anonymous*" access="isAnonymous()"/>
|
|
<intercept-url pattern="/login*" access="permitAll"/>
|
|
<intercept-url pattern="/**" access="isAuthenticated()"/>
|
|
|
|
<csrf disabled="true"/>
|
|
|
|
<form-login login-page='/login.html' authentication-success-handler-ref="myAuthenticationSuccessHandler" authentication-failure-url="/login.html?error=true"/>
|
|
|
|
<logout delete-cookies="JSESSIONID"/>
|
|
|
|
<remember-me key="uniqueAndSecret" token-validity-seconds="86400"/>
|
|
|
|
</http>
|
|
|
|
<beans:bean id="myAuthenticationSuccessHandler" class="org.baeldung.security.MySimpleUrlAuthenticationSuccessHandler"/>
|
|
|
|
<authentication-manager>
|
|
<authentication-provider>
|
|
<user-service>
|
|
<user name="user1" password="user1Pass" authorities="ROLE_USER"/>
|
|
<user name="admin1" password="admin1Pass" authorities="ROLE_ADMIN"/>
|
|
</user-service>
|
|
</authentication-provider>
|
|
</authentication-manager>
|
|
|
|
<!-- <mvc:interceptors>
|
|
<bean id="loggerInterceptor" class="org.baeldung.web.interceptor.LoggerInterceptor" />
|
|
</mvc:interceptors> -->
|
|
|
|
</beans:beans> |