Java 弹簧靴&x2B;Spring安全注销被重定向到登录

Java 弹簧靴&x2B;Spring安全注销被重定向到登录,java,spring-boot,authentication,spring-security,logout,Java,Spring Boot,Authentication,Spring Security,Logout,因此,在我的Spring boot RESTful API中,我的/logout映射被重定向到/login 我已经在谷歌上搜索了这个问题并找到了解决方案,但我不知道如何用我的代码实现它 我的网站安全配置: @Configuration @AllArgsConstructor @EnableWebSecurity @EnableGlobalMethodSecurity(prePostEnabled = true) public class WebSecurityConfig extends Web

因此,在我的Spring boot RESTful API中,我的
/logout
映射被重定向到
/login

我已经在谷歌上搜索了这个问题并找到了解决方案,但我不知道如何用我的代码实现它

我的网站安全配置:

@Configuration
@AllArgsConstructor
@EnableWebSecurity
@EnableGlobalMethodSecurity(prePostEnabled = true)
public class
WebSecurityConfig extends WebSecurityConfigurerAdapter {//provides security for endpoints

    @Autowired
    private JwtAuthenticationEntryPoint jwtAuthenticationEntryPoint;

    @Autowired
    private UserDetailsService jwtUserDetailsService;

    @Autowired
    private JwtRequestFilter jwtRequestFilter;

    private final AccountService accountService;
    private final BCryptPasswordEncoder bCryptPasswordEncoder;

    @Autowired
    public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
        // configure AuthenticationManager so that it knows from where to load
        // user for matching credentials
        // Use BCryptPasswordEncoder
        auth.userDetailsService(jwtUserDetailsService).passwordEncoder(bCryptPasswordEncoder);
    }

    @Bean
    @Override
    public AuthenticationManager authenticationManagerBean() throws Exception {
        return super.authenticationManagerBean();
    }

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http
                .csrf().disable()//So we can send post requests without being rejected(if we using form based indication we want to enable this)
                .authorizeRequests()
                .antMatchers("/login", "/authenticate")
                .permitAll()//any request that goes trough that end point we want to allow.
                .anyRequest()
                .authenticated().and().logout()
                .logoutRequestMatcher(new AntPathRequestMatcher("/logout")).logoutSuccessUrl("/login").and().exceptionHandling().authenticationEntryPoint(jwtAuthenticationEntryPoint)
                .and().sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS)
                .and().addFilterBefore(jwtRequestFilter, UsernamePasswordAuthenticationFilter.class);
        http.cors();

    }

    @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.authenticationProvider(daoAuthenticationProvider());
    }

    @Bean
    public DaoAuthenticationProvider daoAuthenticationProvider() {
        DaoAuthenticationProvider provider =
                new DaoAuthenticationProvider();
        provider.setPasswordEncoder(bCryptPasswordEncoder);
        provider.setUserDetailsService(jwtUserDetailsService);
        return provider;
    }
这不起作用,所以我试着这样做:

@Override
protected void configure(HttpSecurity http) throws Exception {
    http
            .csrf().disable()//So we can send post requests without being rejected(if we using form based indication we want to enable this)
            .authorizeRequests()
            .antMatchers("/login", "/authenticate")
            .permitAll()//any request that goes trough that end point we want to allow.
            .anyRequest()
            .authenticated().and().exceptionHandling().authenticationEntryPoint(jwtAuthenticationEntryPoint)
            .and().sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS).and().logout()
            .logoutRequestMatcher(new AntPathRequestMatcher("/logout")).logoutSuccessUrl("/login")
            .and().addFilterBefore(jwtRequestFilter, UsernamePasswordAuthenticationFilter.class);
    http.cors();

}
但这也不起作用

我知道这段代码:

.and().logout()
                .logoutRequestMatcher(new AntPathRequestMatcher("/logout")).logoutSuccessUrl("/login")
应该能解决我的问题,但不能。有人能帮我吗?
谢谢

你想要什么?您想重拨到哪里?注销屏幕。它现在不注销。它确实注销了。默认情况下,注销会重定向到登录页面。没关系。如果要重定向到另一个页面,必须更改
logoutSuccessUrl
URL。