Spring cloud eureka 添加 spring-security

Posted whm-blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring cloud eureka 添加 spring-security相关的知识,希望对你有一定的参考价值。

spring 版本  2.1.4

1.

问题: 添加 spring-security 后 无法注册。

原因 : spring boot 2.x 添加了 csrf 验证 。

解决 :

package boot.zero.eureka.conf;

import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;

@Configuration
public class SecurityConfig extends WebSecurityConfigurerAdapter {

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.csrf().disable();
        super.configure(http);
    }
}

注册 时写法:

 

eureka:
  client:
    service-url:
      defaultZone: http://admin:admin@localhost:8080/eureka/

 

 

 

2.

问题 : /actuator/info 没有信息

解决: 执行一遍 maven 命令 spring-boot: build-info

以上是关于Spring cloud eureka 添加 spring-security的主要内容,如果未能解决你的问题,请参考以下文章

spring cloud Eureka服务注册

巨坑:spring cloud项目eureka添加security认证之后,client端注册失败

SpringCloud之Eureka服务发现

Spring Cloud Eureka服务注册与发现

Spring Cloud Eureka服务注册与发现

Spring Cloud(04)——Eureka Server介绍