统一配置
1.为什么需要统一配置中心
- 不方便维护
- 配置内容安全与权限
- 更新项目配置需要重启
2.统一配置-服务端
-
核心依赖
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
复制代码
-
启动类
@EnableConfigServer 开启统一配置服务端
/**
* Eureka 统一配置服务端启动类
* @author gaowenfeng
* 启用Eureka客户端
*/
@SpringBootApplication
@EnableDiscoveryClient
@EnableConfigServer
public class MicroWeatherConfigServerApplication {
public static void main(String[] args) {
SpringApplication.run(MicroWeatherConfigServerApplication.class, args);
}
}
复制代码
-
配置
spring:
application:
name: micro-weather-config-server
cloud:
config:
server:
git:
## 统一配置的仓库
uri: https://github.com/MarkGao11520/spring-cloud-repo/
username: xxxx
password: xxxx
# 拉取下来的文件防止位置
basedir: /Users/gaowenfeng/project/idea/springcloud_sell/config/basedir
## 仓库路径
search-paths: config-repo
eureka:
# 服务的url
service-url:
defaultZone: http://localhost:8761/eureka/
server:
port: 8888
复制代码
3.统一配置-客户端
-
核心依赖
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-client</artifactId>
</dependency>
复制代码
-
配置
1.这里如果配置文件名称为application.xxx的话,会搞乱顺序,先找配置中心再找注册中心,这样会找不到,会导致去加载默认的8888, 2. eureka.service-url的配置需要在本地,不然会找不到注册中心
# 配置规则
#所以应该叫bootstrap.yml
# /{application}/{profile}[/{label}]
# /{application}-{profile}.yml
# /{application}-{profile}.properties
# /{label}/{application}-{profile}.yml
# /{label}/{application}-{profile}.properties
spring:
application:
# 配置规则里的{application}
name: micro-weather-config-client
cloud:
config:
# 找到配置的方式一
# uri: http://localhost:8888
# 配置规则里的${profile}
# profile: bus-dev
# 配置规则里的${label},label 是分支,不是路径!
# label: test
# 找到配置的方式二
discovery:
enabled: true
service-id: CONFIG
profile: test
eureka:
# 服务的url
service-url:
defaultZone: http://localhost:8761/eureka/
复制代码
-
测试
@RunWith(SpringRunner.class)
@SpringBootTest
public class MicroWeatherConfigClientApplicationTests {
@Value("${version}")
private String version;
@Test
public void contextLoads() {
Assert.assertEquals("1.0",version);
}
}
复制代码
Bus 自动更新理论
1.添加依赖
rabbitmq 的bus依赖添加
config server 和client的版本应该对应起来才可以
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bus-amqp</artifactId>
</dependency>
复制代码
2.将bus-refresh接口暴露出去
## 变量名可能会变,利用自动提示可以找到对应的正确配置变量 (输入management.endpoints 找到默认包含一个[health,info]数组的变量,修改为"*")
management:
endpoints:
web:
暴露所有接口
expose: "*"
复制代码
3.修改使用配置的客户端的地方
@RestController
@RequestMapping("/env")
@RefreshScope // 加入这个注解自动刷新配置
public class EnvController {
@Value("${env}")
private String env;
@GetMapping("/print")
public String print() {
return env;
}
}
}
@Data
@Component
@ConfigurationProperties("girl")
@RefreshScope // 加入这个注解自动刷新配置
public class GirlConfig {
private String name;
private Integer age;
}
复制代码
4.使用
修改git的配置以后,POST 请求访问 "http://192.161.4:8080/actuator/bus-refresh" 即可(这个路径可能会变,具体请查阅启动日志)
5.集成WebHooks实现动态更新
在GitHub或者其他git工具上配置webhook,然后就可以实现,在git更新的时候,发送请求给我们的config服务器让其刷新配置
Zuul网关
-
核心依赖
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-zuul</artifactId>
</dependency>
复制代码
-
启动类
@EnableZuulProxy 开启网关
/**
* Eureka 客户端启动类
* @author gaowenfeng
* 启用Eureka客户端
*/
@SpringBootApplication
@EnableDiscoveryClient
@EnableZuulProxy
public class MicroWeatherEurekaClientApplication {
public static void main(String[] args) {
SpringApplication.run(MicroWeatherEurekaClientApplication.class, args);
}
}
复制代码
-
配置
spring:
application:
name: micro-weather-eureka-client
eureka:
# 服务的url
service-url:
defaultZone: http://localhost:8761/eureka/
zuul:
routes:
# 将city的请求转发到应用msa-weather-city-server
city:
path: /city/**
serviceId: msa-weather-city-server
# 将data的请求转发到应用msa-weather-data-server
data:
path: /data/**
serviceId: msa-weather-data-server
复制代码