九、Config Server
在上面的项目中,每个项目的配置文件都在自己的项目中配置,这样,在生产环境中,会带来很多麻烦,每改动一个配置可能要修改很多个项目, 被修改的项目可能都要重新打包,重新部署。那能不能有一种方法,统一部署Spring Cloud 中的各个微服务的配置呢?这就是Spring Cloud Config。 Spring Cloud Config 是一种用来动态获取Git、SVN、本地的配置文件的一种工具。
9.1.Config Server基本使用
1、创建一个项目,futurecloud-config-server,引入依赖spring-cloud-config-server
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!--引入spring cloud config server依赖-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
<version>2.1.1.RELEASE</version>
</dependency>
注意: 之前我们一般都是用的各种starter,而这个config server不是spring-cloud-starter-config-server 而是spring-cloud-config-server
2、在spring boot application 主类中添加Config Server的注解@EnableConfigServer,开启Config Server
@SpringBootApplication
@EnableConfigServer
public class FutruecloudConfigServerApplication
{
public static void main( String[] args )
{
SpringApplication.run(FutruecloudConfigServerApplication.class);
}
}
3、创建一个远程仓库 我使用的是码云,在码云上创建一个仓库,地址为: https://gitee.com/makyan/futurecloud-config
4、配置Config Server,application.yml配置如下:
server:
port: 11000 #程序启动端口