tuonina 6 years ago
parent
commit
03d641fc0c

+ 1 - 0
build.gradle

@@ -69,6 +69,7 @@ subprojects {
 
         compile('org.springframework.cloud:spring-cloud-config-server')
         compile('org.springframework.boot:spring-boot-starter-jetty')
+        compile('org.springframework.boot:spring-boot-starter-security')
 
         compile('org.springframework.cloud:spring-cloud-starter-netflix-eureka-server')
 //        compile('org.springframework.cloud:spring-cloud-starter-openfeign')

+ 9 - 2
eureka-web/src/main/resources/application-dev.yml

@@ -1,13 +1,20 @@
+spring:
+  security:
+    user:
+      name: envir
+      password: envir
+
 #服务注册于发现配置
 eureka:
   instance:
     hostname: localhost
     prefer-ip-address: true
+    ip-address: 127.0.0.1
   client:
     register-with-eureka: true
-    fetch-registry: true
+    fetch-registry: false
     service-url:
-      defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
+      defaultZone: http://${spring.security.user.password}:${spring.security.user.password}@${eureka.instance.ip-address}:${server.port}/eureka/
   server:
     enable-self-preservation: false
     eviction-interval-timer-in-ms: 60000

+ 2 - 1
eureka-web/src/main/resources/bootstrap.yml

@@ -17,4 +17,5 @@ spring:
           uri: https://git.gygxzc.cn/Envir_Group/Config_Resp
           search-paths: /**
           basedir: ./config
-      label: master
+        prefix: /config
+      label: master