Spring Boot注销

时间:2015-10-01 13:43:48

标签: spring-boot

我遇到弹簧启动注销问题..

http.authorizeRequests().antMatchers("/**")
    .permitAll().and().csrf().disable()
    .logout().logoutRequestMatcher(
    new AntPathRequestMatcher("/logout"))
    .logoutSuccessUrl("/");

我在WebSecurityConfig类中添加了此代码。

它只是刷新页面并返回主页(角度JS代码中存在页面重定向逻辑)

我也尝试了这个

 http.logout()
         .logoutUrl("/logout")
         .logoutSuccessUrl("/")
         .invalidateHttpSession( true )
         .deleteCookies("CSISESSION");

但是不起作用。

0 个答案:

没有答案