微信公衆號:bugstack蟲洞棧 沉澱、分享、成長,專一於原創專題案例,以最易學習編程的方式分享知識,讓本身和他人都能有所收穫。目前已完成的專題有;Netty4.x實戰專題案例、用Java實現JVM、基於JavaAgent的全鏈路監控、手寫RPC框架、架構設計專題案例[Ing]等。html
在微服務架構中,爲了更方便的向微服務實例廣播消息,咱們一般會構建一個消息中心,讓全部的服務實例都鏈接上來,而該消息中心所發佈的消息都會被微服務實例監聽和消費,咱們把這種機制叫作消息總線(SpringCloud Bus)java
當咱們的微服務達到是幾個到百個以上,在更新配置時,不太可能一個個刷新或者重啓,這樣既不能保證效率也容易致使遺漏形成事故。所以咱們須要SpringCloud Bus 提供總線服務,在咱們push代碼到Git的時候,經過Webhooks(http://localhost:port/actuator/bus-refresh/)執行刷新,消息總線會通知各個實例更新配置,以達到自動更新全服務配置。git
itstack-demo-springcloud-07
├── itstack-demo-springcloud-config-client
│ └── src
│ └── main
│ ├── java
│ │ └── org.itstack.demo
│ │ ├── web
│ │ │ └── ConfigClientController.java
│ │ └── ConfigClientApplication.java
│ └── resources
│ ├── application.yml
│ └── bootstrap.yml
├── itstack-demo-springcloud-config-server
│ └── src
│ └── main
│ ├── java
│ │ └── org.itstack.demo
│ │ └── ConfigServerApplication.java
│ └── resources
│ └── application.yml
└── itstack-demo-springcloud-eureka-server
└── src
└── main
├── java
│ └── org.itstack.demo
│ └── EurekaServerApplication.java
└── resources
└── application.yml
複製代碼
完整代碼歡迎關注公衆號:bugstack蟲洞棧 回覆「SpringCloud專題」進行下載github
web/ConfigClientController.java & 添加註解@RefreshScope自動刷新配置web
/** * 微信公衆號:bugstack蟲洞棧 | 沉澱、分享、成長,專一於原創專題案例 * 論壇:http://bugstack.cn * Create by 付政委 on @2019 */
@RestController
@RefreshScope
public class ConfigClientController {
@Value("${info.profile:error}")
private String profile;
@GetMapping("/config")
public Mono<String> config() {
return Mono.justOrEmpty(profile);
}
}
複製代碼
ConfigClientApplication.java & 普通配置便可spring
/** * 微信公衆號:bugstack蟲洞棧 | 沉澱、分享、成長,專一於原創專題案例 * 論壇:http://bugstack.cn * Create by 付政委 on @2019 */
@SpringBootApplication
public class ConfigClientApplication {
public static void main(String[] args) {
SpringApplication.run(ConfigClientApplication.class, args);
}
}
複製代碼
application.yml & 須要配置endpoints,這樣才能夠暴漏刷新服務編程
spring:
application:
name: itstack-demo-springcloud-config-client
cloud:
bus:
trace:
enabled: true
enabled: true
server:
port: 9001
# 若是不使用消息總線,則開啓以下配置 /actuator/refresh 這個 Endpoint 暴露出來
#management:
# endpoints:
# web:
# exposure:
# include: refresh
複製代碼
bootstrap.yml & 配置中心服務配置,http://localhost:7397 添加配置服務bootstrap
spring:
cloud:
config:
name: config-client # 對應 {application} 部分,例如;config-client-dev = 只取最後一個符號'-'以前的
profile: dev # 對應 {profile} 部分
label: master # 對應 {label} 部分,即 Git 的分支。若是配置中心使用的是本地存儲,則該參數無用
discovery:
enabled: true # 開啓 config 服務發現支持
service-id: itstack-demo-springcloud-config-server # 配置服務name
#配置文件會被轉換成 Web,訪問規則以下;
#/{application}/{profile}[/{label}]
#/{application}-{profile}.yml
#/{label}/{application}-{profile}.yml
#/{application}-{profile}.properties
#/{label}/{application}-{profile}.properties
eureka:
client:
service-url:
defaultZone: http://localhost:7397/eureka/
複製代碼
ConfigServerApplication.java & 添加註解@EnableConfigServer設置成配置服務中心瀏覽器
/** * 微信公衆號:bugstack蟲洞棧 | 沉澱、分享、成長,專一於原創專題案例 * 論壇:http://bugstack.cn * Create by 付政委 on @2019 */
@SpringBootApplication
@EnableConfigServer
public class ConfigServerApplication {
public static void main(String[] args) {
SpringApplication.run(ConfigServerApplication.class, args);
}
}
複製代碼
application.yml & 配置信息,消息總線刷新微信
server:
port: 8080
spring:
application:
name: itstack-demo-springcloud-config-server
cloud:
config:
server:
git:
uri: https://github.com/fuzhengwei/itstack-demo-config # 換成本身的配置Git倉庫的地址,若是沒有能夠新建工程地址,也能夠克隆個人;https://github.com/fuzhengwei/itstack-demo-config
search-paths: config-repo # Git倉庫地址下的底層配置文件名稱,若是配置多個用逗號','分割。
# 若是配置中心須要訪問權限,則開啓配置
# spring.cloud.config.server.git.username:Github帳戶
# spring.cloud.config.server.git.password:Github密碼
eureka:
client:
service-url:
defaultZone: http://localhost:7397/eureka/
management:
endpoints:
web:
exposure:
include: bus-refresh
複製代碼
EurekaServerApplication.java & 添加註解@EnableEurekaServer啓動服務發現
/** * 微信公衆號:bugstack蟲洞棧 | 沉澱、分享、成長,專一於原創專題案例 * 論壇:http://bugstack.cn * Create by 付政委 on @2019 */
@SpringBootApplication
@EnableEurekaServer
public class EurekaServerApplication {
public static void main(String[] args) {
SpringApplication.run( EurekaServerApplication.class, args );
}
}
複製代碼
application.yml & 配置信息
server:
port: 7397
eureka:
instance:
hostname: localhost
client:
registerWithEureka: false
fetchRegistry: false
serviceUrl:
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
spring:
application:
name: itstack-demo-springcloud-eureka-server
複製代碼
準備好本身Github的配置倉庫,也能夠克隆個人Git;github.com/fuzhengwei/… {有一組配置配置文件}
配置Webhooks,在https://github.com/換你本身的fuzhengwei/換你本身的itstack-demo-netty/settings/hooks/new
分別啓動服務
訪問配置服務,端口7397;http://localhost:8080/config-client/dev
{
"name": "config-client",
"profiles": [
"dev"
],
"label": null,
"version": "ea0b1a1017595d542aa01b8b2bda68f9620dd81a",
"state": null,
"propertySources": [
{
"name": "https://github.com/fuzhengwei/itstack-demo-config/config-repo/config-client-dev.yml",
"source": {
"info.profile": "dev bus"
}
}
]
}
複製代碼
info:
profile: dev bus
複製代碼
訪問使用配置的客戶端
dev bus
複製代碼
dev
複製代碼