<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> </dependency>
@EnableConfigServer @SpringBootApplication public class ConfigServerApplication { public static void main(String[] args) { SpringApplication.run(ConfigServerApplication.class, args); } }
spring.application.name=config-server server.port=7001 #git路径,精确到具体仓库位置 spring.cloud.config.server.git.uri=https://gitee.com/dongspace/config-file/ #git uri下的相对搜索位置,可以配置多个,以","分隔 spring.cloud.config.server.git.search-paths=config-client,demo spring.cloud.config.server.git.username=*** spring.cloud.config.server.git.password=***
在config-client下新建配置文件application.properties、application-stg1.properties,并添加如下配置
from=master #stg1中的配置 from=master-stg1
在demo文件夹下新建dongspace.properties、dongspace-stg1.properties,并添加如下配置
from=dong-master #stg1中的配置 from=dong-master-stg1
配置信息的URL与配置文件的映射关系如下:
上面的URL对应{application}-{profile}.properties,其中{application}对应配置文件名,{label}对应代码分支,默认为default
以上通过浏览器访问的路径对应为:
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-config</artifactId> </dependency>
server.port=7002 spring.application.name=config-client spring.cloud.config.profile=stg1 spring.cloud.config.label=master spring.cloud.config.uri=http://localhost:7001/
@RestController public class TestConfigController { @Value("${from}") private String from; @RequestMapping("/testConfig") public Object testConfig() { return from; } }
实现多个服务对应一个仓库中的不同目录
spring.cloud.config.server.git.uri=https://gitee.com/dongspace/config-file/ #{application}对应访问服务的应用名 spring.cloud.config.server.git.search-paths={application}
实现一个服务对应目录下的一个仓库
spring.cloud.config.server.git.uri=https://gitee.com/dongspace/{application}-conf
客户端应用从config-server中获取配置信息遵从下面的执行流程:
当使用占位符配置URI时,Config Server会默认加载application为app的仓库,根据之前的配置规则,服务端的健康检测器会不断检查 https://gitee.com/dongspace/a... 仓库是否可以连通,这时访问配置中心的/health端点时返回的服务状态为"DOWN",当服务化配置中心时,将影响它的可用性判断,此时有两种解决方案:1.创建名为app-config的仓库;2.改变健康监测的配置如下
spring.cloud.config.server.health.repositories.check.name=app2 spring.cloud.config.server.health.repositories.check.label=master spring.cloud.config.server.health.repositories.check.profiles=default
首先在服务端pom.xml中添加Spring Security依赖:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency>
解决方案如下:
1.切换到自己项目所在的目录,右键选择GIT BASH Here,Idea中可使用Alt+F12
2.在terminl窗口中依次输入命令:
git pull
git pull origin master
git pull origin master --allow-unrelated-histories
3.在idea中重新push自己的项目,成功!!!