springcloud配置仓库的使用-客户端
在上一章中我们借助github配置了一个springcloud-config-server项目,他的作用是为其余微服务提供配置方便管理上一章https://blog.csdn.net/weixin_43486804/article/details/100064322本例子源代码:服务端例子https://github.com/lihang212010/spring-cloud-config-...
在上一章中我们借助github配置了一个springcloud-config-server项目,他的作用是为其余微服务提供配置方便管理
上一章https://blog.csdn.net/weixin_43486804/article/details/100064322
本例子源代码:
服务端例子https://github.com/lihang212010/spring-cloud-config-server
客户端例子:https://github.com/lihang212010/spring-cloud-config-client
仓库位置(仓库里面没内容的):https://github.com/lihang212010/springcloud-Warehouse
这一章讲的是如何配置客户端
首先新建一个项目(或者在需求的项目上添加)
pop.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
其中spring-cloud-starter-config是客户端的配置,可以在老项目中直接添加这个依赖使其使用配置仓库
在我们正常的配置中我们之添加一个端口
server:
port: 8081
然后新建一个yml配置(名字无所谓)
spring:
application:
name: miscroservice
cloud:
config:
uri: http://localhost:8080/
profile: dev #配置文件的版本
label: master #仓库分支
必须是2个配置文件,不然不会访问到8080端口。
然后我们新建一个配置类,作用是在网页上显示我们使用的配置
@RestController
public class ConfigClientController {
@Value("${profile}")
private String profile;
@GetMapping("/profile")
public String hello() {
return this.profile;
}
}
这样就完成了
访问http://localhost:8081/profile
内容是你配置文件内容。这样便完成了仓库配置。
更多推荐
所有评论(0)