一、为EurekaServer增加安全访问

EurekaServer中:pom.xml

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-security</artifactId>
  4. </dependency>

EurekaServer中:application.properties

  1. #eureka 提供服务发现的地址
  2. eureka.client.service-url.defaultZone=http://zhangfei:777@localhost:8761/eureka
  3. #eureka.client.service-url.defaultZone=http://localhost:8761/eureka
  4. # 安全模块
  5. security.basic.enabled=true
  6. security.user.name=zhangfei
  7. security.user.password=777

微服务中: application.properties

  1. eureka.client.serviceUrl.defaultZone=http://zhangfei:777@localhost:8761/eureka