Skip to content

Commit

Permalink
Logout filter added to the security configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
kolorobot committed Mar 31, 2012
1 parent cfe910f commit b826eea
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ http://www.springframework.org/schema/security/spring-security-3.1.xsd">
<security:global-method-security pre-post-annotations="enabled" secured-annotations="enabled" />

<security:http auto-config="true" disable-url-rewriting="true" use-expressions="true">
<security:logout logout-url="/logout" />
<security:intercept-url pattern="/" access="permitAll" />
<security:intercept-url pattern="/**" access="isAuthenticated()" />
<security:intercept-url pattern="/**" access="isAuthenticated()" />
</security:http>

<security:authentication-manager>
Expand Down

0 comments on commit b826eea

Please sign in to comment.