spring security3 (二)remember-me 和logout功能

1. logout功能比较简单,只需要先在http标签中加上:

然后再将logoutFilter的bean配置在下面:


    class="org.springframework.security.web.authentication.logout.LogoutFilter">
  
  
   
    
          class="org.springframework.security.web.authentication.logout.SecurityContextLogoutHandler">
    

   
  
  
 

 

最后在页面上需要的地方加上超链接:

Logout

这样就可以实现logout功能了

 

 

2. remember me功能,是要将用户输入的用户名密码在登录以后记住,保存在系统后台之中,而不是在登录页面的输入框中

具体配置如下:

首先,还是在 标签中配置

然后配置rememberMeServices的bean


    class="org.springframework.security.web.authentication.rememberme.TokenBasedRememberMeServices">
  
  
  
  
  
 

    class="org.springframework.security.authentication.RememberMeAuthenticationProvider">
  
 

 

你可能感兴趣的:(综合,页面)