(五)spring cloud微服務分散式雲架構-配置中心服務化和高可用

springcloud885發表於2019-03-11

server端改造

1、新增依賴

<dependencies>
	<dependency>
		<groupId>org.springframework.cloud</groupId>
		<artifactId>spring-cloud-config-server</artifactId>
	</dependency>
	<dependency>
		<groupId>org.springframework.cloud</groupId>
		<artifactId>spring-cloud-starter-eureka</artifactId>
	</dependency>
</dependencies>
複製程式碼

需要多引入spring-cloud-starter-eureka包,來新增對eureka的支援。Spring Cloud大型企業分散式微服務雲架構原始碼請加一七九一七四三三八零

2、配置檔案

server:
server:
  port: 8001
spring:
  application:
    name: spring-cloud-config-server
  cloud:
    config:
      server:
        git:
          uri: https://github.com/ityouknow/spring-cloud-starter/     # 配置git倉庫的地址
          search-paths: config-repo                             # git倉庫地址下的相對地址,可以配置多個,用,分割。
          username: username                                        # git倉庫的賬號
          password: password                                    # git倉庫的密碼
eureka:
  client:
    serviceUrl:
      defaultZone: http://localhost:8000/eureka/   ## 註冊中心eurka地址
複製程式碼

增加了eureka註冊中心的配置

3、啟動類

啟動類新增@EnableDiscoveryClient啟用對配置中心的支援

@EnableDiscoveryClient
@EnableConfigServer
@SpringBootApplication
public class ConfigServerApplication {

	public static void main(String[] args) {
		SpringApplication.run(ConfigServerApplication.class, args);
	}
}
複製程式碼

這樣server端的改造就完成了。先啟動eureka註冊中心,在啟動server端,在瀏覽器中訪問:http:// localhost:8000/就會看到server端已經註冊了到註冊中心了。

客戶端改造

1、新增依賴

<dependencies>
	<dependency>
		<groupId>org.springframework.cloud</groupId>
		<artifactId>spring-cloud-starter-config</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-eureka</artifactId>
	</dependency>
	<dependency>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-test</artifactId>
		<scope>test</scope>
	</dependency>
</dependencies>
複製程式碼

需要多引入spring-cloud-starter-eureka包,來新增對eureka的支援。

2、配置檔案

spring.application.name=spring-cloud-config-client
server.port=8002

spring.cloud.config.name=neo-config
spring.cloud.config.profile=dev
spring.cloud.config.label=master
spring.cloud.config.discovery.enabled=true
spring.cloud.config.discovery.serviceId=spring-cloud-config-server

eureka.client.serviceUrl.defaultZone=http://localhost:8000/eureka/
複製程式碼

主要是去掉了spring.cloud.config.uri直接指向server端地址的配置,增加了最後的三個配置:

spring.cloud.config.discovery.enabled :開啟Config服務發現支援

spring.cloud.config.discovery.serviceId :指定server端的name,也就是server端spring.application.name的值

eureka.client.serviceUrl.defaultZone :指向配置中心的地址

這三個配置檔案都需要放到bootstrap.properties的配置中

3、啟動類

啟動類新增@EnableDiscoveryClient啟用對配置中心的支援

@EnableDiscoveryClient
@SpringBootApplication
public class ConfigClientApplication {

	public static void main(String[] args) {
		SpringApplication.run(ConfigClientApplication.class, args);
	}
}
複製程式碼

啟動client端,在瀏覽器中訪問:http:// localhost:8000/ 就會看到server端和client端都已經註冊了到註冊中心了。

高可用

為了模擬生產叢集環境,我們改動server端的埠為8003,再啟動一個server端來做服務的負載,提供高可用的server端支援。 我們先單獨測試服務端,分別訪問:http:// localhost:8001/neo-config/dev、http:// localhost:8003/neo-config/dev返回資訊:

{
    "name": "neo-config", 
    "profiles": [
        "dev"
    ], 
    "label": null, 
    "version": null, 
    "state": null, 
    "propertySources": [
        {
            "name": "https://github.com/ityouknow/spring-cloud-starter/config-repo/neo-config-dev.properties", 
            "source": {
                "neo.hello": "hello im dev"
            }
        }
    ]
}
複製程式碼

說明兩個server端都正常讀取到了配置資訊。

再次訪問:http:// localhost:8002/hello,返回:hello im dev update。說明客戶端已經讀取到了server端的內容,我們隨機停掉一臺server端的服務,再次訪問http:// localhost:8002/hello,返回:hello im dev update,說明達到了高可用的目的。

相關文章