java springcloud b2b2c shop 多用戶商城系統源碼(八):配置中心服務化和高可用

server端改造

一、添加依賴

複製代碼
<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的支持。html

二、配置文件

複製代碼
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註冊中心的配置git

三、啓動類

啓動類添加@EnableDiscoveryClient激活對配置中心的支持github

複製代碼
@EnableDiscoveryClient
@EnableConfigServer
@SpringBootApplication
public class ConfigServerApplication {

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

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

按照上篇的測試步驟對server端進行測試服務正常。spring

客戶端改造

一、添加依賴

複製代碼
<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的支持。bootstrap

二、配置文件

複製代碼
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的配置中bash

三、啓動類

啓動類添加@EnableDiscoveryClient激活對配置中心的支持架構

複製代碼
@EnableDiscoveryClient
@SpringBootApplication
public class ConfigClientApplication {

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

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

高可用

爲了模擬生產集羣環境,咱們改動server端的端口爲8003,再啓動一個server端來作服務的負載,提供高可用的server端支持。

如上圖就可發現會有兩個server端同時提供配置中心的服務,防止某一臺down掉以後影響整個系統的使用。

咱們先單獨測試服務端,分別訪問:http://localhost:8001/neo-config/devhttp://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端都正常讀取到了配置信息。

總體架構以下:

完整項目的源碼來源

Spring Cloud大型企業分佈式微服務雲構建的B2B2C電子商務平臺源碼請加企鵝求求: 一零叄八七七四六貳六 

相關文章
相關標籤/搜索