spring cloud官网以及网上的很多博客介绍的都是spring cloud config配置读取git上的配置文件,而笔者希望spring cloud config能从本地读取,将各个微服务的配置文件都集中放在本地的配置中心里去管理。以下是笔者亲测后的详细配置步骤。
项目框架简介:
服务主框架:Spring Cloud Hoxton.SR8
服务注册中心:Spring Cloud Consul
pom.xml 添加如下依赖:
org.springframework.cloud
spring-cloud-starter-consul-discovery
org.springframework.cloud
spring-cloud-config-server
启动类如下:
@SpringCloudApplication
@EnableConfigServer
public class ConfigApplication {
public static void main(String[] args) {
SpringApplication.run(ConfigApplication.class, args);
}
}
静态资源目录结构如下:
配置中心的bootstrap.yml 配置如下:
server:
port: 8888
spring:
application:
name: sun-config
cloud:
config:
server:
native:
search-locations: classpath:ymls
bootstrap: true
profiles:
active: native
配置中心的application.yml 配置如下:
spring:
cloud:
consul:
host: localhost
port: 8500
discovery:
service-name: sun-config
health-check-interval: 3600s
heartbeat:
enabled: true
其他微服务的配置文件如下(以sun-platform-dev.yml为例):
server:
port: 9527
spring:
application:
name: sun-platform
cloud:
consul:
host: localhost
port: 8500
discovery:
service-name: ${spring.application.name}
health-check-interval: 3600s
heartbeat:
enabled: true
datasource:
username: xxx
password: xxx
driver-class-name: com.mysql.cj.jdbc.Driver
url: xxx
type: com.alibaba.druid.pool.DruidDataSource
mybatis-plus:
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
test:
content: just test for config server
至此,配置中心服务(sun-config)的所有配置已经基本完成。
pom.xml 添加如下依赖:
org.springframework.cloud
spring-cloud-starter-config
本地的resources目录下已经不需要再存放application.yml / application-dev.yml / application-prod.yml 之类的配置文件了, 笔者已经把 application-dev.yml 重命名为sun-platform-dev.yml, 并将该文件放到sun-config服务的resouces/ymls目录下了(见第一步中的静态资源目录结构)。
sun-platform模块的静态资源目录结构如下:
可以看到,resources目录下虽然没有了application.yml之类的配置文件,但是还有一个bootstrap.yml配置文件。 该文件如下:
spring:
application:
name: sun-platform
profiles:
active: dev
至此,sun-platform模块的配置文件也已改造完成。
在sun-platform模块下新建一个controller,去读取sun-config模块下sun-platform-dev.yml里的配置项。
本地先启动consul服务,然后启动sun-config, 最后再启动sun-platform。
sun-platform服务启动过程如下:
浏览器中正常显示了sun-platform-dev.yml中的配置值。
至此,大功告成。
笔者发现当把配置中心服务的默认端口(8888)修改后,其他服务在启动后就无法找到该配置中心了,所以导致启动失败。如下图:
此时,需要在其他服务的bootstrap.yml中增加如下配置项(以sun-platform为例):
重新启动sun-platfrom, 此时发现该服务可以读取 ”非默认端口“ 的sun-config了 。如下:
附上Spring官网下Spring Cloud Config的说明。