1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
   |  
<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">
 
    <debug />
 
    <global-method-security pre-post-annotations="enabled" />
 
    <http pattern="/domain/login.jsf" security="none"/>
 
    <http use-expressions="true">
 
        <intercept-url pattern="/domain/secured/**" access="isAuthenticated()" />
        <intercept-url pattern="/**" access="permitAll" />
 
		<form-login
			login-processing-url="/"
			login-page="/"
			default-target-url="/domain/secured/secret-page.jsf"
			authentication-failure-url="/" 
		/>
 
		<logout logout-url="/" logout-success-url="/" />
		<remember-me />
 
 
        <session-management invalid-session-url="/">
            <concurrency-control max-sessions="1" error-if-maximum-exceeded="true" />
        </session-management>
 
    </http>
 
    <authentication-manager>
        <authentication-provider>
            <user-service>
               <user name="user" password="user" authorities="ROLE_USER" />
            </user-service>
        </authentication-provider>
    </authentication-manager>
 
</beans:beans> | 
Partager