springboot, 本地配置中心

1 eureka, application.properties

server.port=8080
spring.application.name=cvs-register

spring.cloud.config.server.native.search-locations=classpath:/configuration
#spring.cloud.config.server.native.search-locations=/home/configuration
spring.profiles.active=native

eureka.client.registerWithEureka=false
eureka.client.fetchRegistry=false
#eureka.client.serviceUrl.defaultZone=http://192.168.1.82:8080/eureka
eureka.client.serviceUrl.defaultZone=http://localhost:8080/eureka

springboot, 本地配置中心_第1张图片

springboot, 本地配置中心_第2张图片

plus, bootstrap优先级高于application.properties

你可能感兴趣的:(bootconfig)