Spring Boot 云配置客户端

  • 云配置客户端

    某些应用程序可能需要可能需要更改的配置属性,而开发人员可能需要将其删除或重新启动应用程序才能执行此操作。但是,这可能会导致生产中断,并需要重新启动应用程序。Spring Cloud Configuration Server允许开发人员加载新的配置属性,而无需重新启动应用程序且没有任何停机时间。
  • 使用Spring Cloud Configuration Server

    首先,从Spring Initializer页面下载Spring Boot项目,然后选择Spring Cloud Config Client依赖项。
    config server
    现在,如下所示在构建配置文件中添加Spring Cloud Config Client依赖项-
    Maven用户可以将以下依赖项添加到pom.xml文件中。
    
    <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>
    
    Gradle用户依赖的代码如下
    
    implementation 'org.springframework.cloud:spring-cloud-starter-config'
    implementation 'org.springframework.boot:spring-boot-starter-web'
    
    现在,您需要将@RefreshScope注解添加到主Spring Boot应用程序中。@RefreshScope批注用于从Config服务器加载配置属性值。
    下面给出了主要的Spring Boot应用程序类文件-
    
    package com.jc2182.demo;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.cloud.context.config.annotation.RefreshScope;
    
    @SpringBootApplication
    @RefreshScope
    public class ConfigclientApplication {
       public static void main(String[] args) {
          SpringApplication.run(ConfigclientApplication.class, args);
       }
    }
    
    现在,在您的application.properties文件中添加配置服务器URL并提供您的应用程序名称。
    注 -在启动配置客户端应用程序之前,应先运行 http://localhost:8888 配置服务器。
    在上一节配置服务器的git仓库中添加一个config-client-dev.properties的文件并在里面添加属性值:welcome.message = Welcome to Spring cloud config server
    
    spring.application.name = config-client 
    spring.cloud.config.uri = http://localhost:8888 #服务器地址
    spring.cloud.config.profile = dev   
    spring.cloud.config.label = master
    
    下面给出了用于编写简单的REST端点以从配置服务器读取欢迎消息的代码
    
    package com.jc2182.demo;
    
    import org.springframework.beans.factory.annotation.Value;
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.cloud.context.config.annotation.RefreshScope;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    @SpringBootApplication
    @RefreshScope
    @RestController
    public class ConfigclientApplication {
       @Value("${welcome.message}")
       String welcomeText;
       
       public static void main(String[] args) {
          SpringApplication.run(ConfigclientApplication.class, args);
       }
       @RequestMapping(value = "/")
       public String welcomeText() {
          return welcomeText;
       }
    } 
    
    完整的构建配置文件在下面给出-
    Maven pom.xml
    
    <?xml version="1.0" encoding="UTF-8"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0</modelVersion>
        <parent>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-parent</artifactId>
            <version>2.3.0.BUILD-SNAPSHOT</version>
            <relativePath/> <!-- lookup parent from repository -->
        </parent>
        <groupId>com.jc2182</groupId>
        <artifactId>demo</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <name>demo</name>
        <description>Demo project for Spring Boot</description>
    
        <properties>
            <java.version>1.8</java.version>
        </properties>
    
        <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.boot</groupId>
                <artifactId>spring-boot-starter-test</artifactId>
                <scope>test</scope>
                <exclusions>
                    <exclusion>
                        <groupId>org.junit.vintage</groupId>
                        <artifactId>junit-vintage-engine</artifactId>
                    </exclusion>
                </exclusions>
            </dependency>
     
        </dependencies>
    
        <build>
            <plugins>
                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                </plugin>
            </plugins>
        </build>
    
        <repositories>
            <repository>
                <id>spring-milestones</id>
                <name>Spring Milestones</name>
                <url>https://repo.spring.io/milestone</url>
            </repository>
            <repository>
                <id>spring-snapshots</id>
                <name>Spring Snapshots</name>
                <url>https://repo.spring.io/snapshot</url>
                <snapshots>
                    <enabled>true</enabled>
                </snapshots>
            </repository>
        </repositories>
        <pluginRepositories>
            <pluginRepository>
                <id>spring-milestones</id>
                <name>Spring Milestones</name>
                <url>https://repo.spring.io/milestone</url>
            </pluginRepository>
            <pluginRepository>
                <id>spring-snapshots</id>
                <name>Spring Snapshots</name>
                <url>https://repo.spring.io/snapshot</url>
                <snapshots>
                    <enabled>true</enabled>
                </snapshots>
            </pluginRepository>
        </pluginRepositories>
    
    </project>
    
    Gradle 用户 – build.gradle
    
    plugins {
        id 'org.springframework.boot' version '2.3.0.BUILD-SNAPSHOT'
        id 'io.spring.dependency-management' version '1.0.9.RELEASE'
        id 'java'
    }
    
    group = 'com.jc2182'
    version = '0.0.1-SNAPSHOT'
    sourceCompatibility = '1.8'
    
    repositories {
        mavenCentral()
        maven { url 'https://repo.spring.io/milestone' }
        maven { url 'https://repo.spring.io/snapshot' }
    }
    
    ext {
        set('springCloudVersion', "Hoxton.BUILD-SNAPSHOT")
    }
    
    dependencies { 
        implementation 'org.springframework.cloud:spring-cloud-starter-config'
        implementation 'org.springframework.boot:spring-boot-starter-web'
        testImplementation('org.springframework.boot:spring-boot-starter-test') {
            exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
        }
    }
    
    dependencyManagement {
        imports {
            mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
        }
    }
    
    test {
        useJUnitPlatform()
    }
    
    您可以创建一个可执行的JAR文件,并使用以下Maven或Gradle命令运行Spring Boot应用程序-
    对于Maven,请使用以下命令
    
    mvn clean install
    
    在“BUILD SUCCESS”之后,您可以在target目录下找到JAR文件。
    对于Gradle,请使用以下命令-
    
    gradle clean build
    
    在“BUILD SUCCESSFUL”之后,您可以在build/libs目录下找到JAR文件。
    现在,使用如下所示的命令运行JAR文件:
    
    java –jar <JARFILE>
    
    您会发现该应用程序已在Tomcat端口8080上启动。
    现在访问URL,从配置服务器加载http://localhost:8080/ 欢迎消息。