forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
881 B
19 lines
881 B
<beans:beans xmlns="http://www.springframework.org/schema/security"
|
|
xmlns:beans="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="
|
|
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
|
|
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.1.xsd">
|
|
|
|
|
|
<http auto-config="true">
|
|
<intercept-url pattern="/welcome*" access="ROLE_USER" />
|
|
<form-login login-page="/login.jsp" default-target-url="/welcome"
|
|
authentication-failure-url="/loginfailed" />
|
|
<logout logout-success-url="/logout" />
|
|
</http>
|
|
|
|
|
|
<authentication-manager alias="autenticationManager" erase-credentials="false">
|
|
<authentication-provider ref="evoAutenticationProvider"/>
|
|
</authentication-manager>
|
|
</beans:beans> |