Spring Eureka 配置细节

1、在默认设置下,服务注册中心也会将自己作为客户端来尝试注册它自己,所以我们需要禁用它的客户端注册行为,只需要在application.properties中问增加如下配置:

server.port=8761

eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false
eureka.client.serviceUrl.defaultZone=http://localhost:${server.port}/eureka/

2、filterRegistrationBean

  • 1.4.0以后的版本中此类已被移到import org.springframework.boot.web.servlet.FilterRegistrationBean目录中。
  • 修改统一的cloud引用版本

        
            
                org.springframework.cloud
                spring-cloud-dependencies
                Dalston.RELEASE
                pom
                import
            
        
    

3、增加security权限认证


你可能感兴趣的:(Spring Eureka 配置细节)