Spring Could Eureka 开启验证后无法注册

Eureka的Server端开启验证后,其他接口无法向注册中心注册
百度后,发现Spring Cloud 2.0 以上的security默认启用了csrf检验,要在eurekaServer端配置security的csrf检验为false

@EnableWebSecurity
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.csrf().disable();// 关闭csrf检验
        super.configure(http);
    }
}

你可能感兴趣的:(Spring Could Eureka 开启验证后无法注册)