Spring Boot 简明教程

Spring Boot - Cloud Configuration Server

Spring Cloud 配置服务器是一个管理所有应用程序相关配置属性的集中式应用程序。在本章,您将详细了解如何创建 Spring Cloud 配置服务器。

Creating Spring Cloud Configuration Server

首先,从 Spring Initializer 页面下载 Spring Boot 项目,并选择 Spring Cloud Config Server 依赖。观察以下给出的屏幕截图 −

creating spring cloud configuration server

现在,在构建配置文件中添加 Spring Cloud 配置服务器依赖,具体解释如下 −

Maven 用户可以在 pom.xml 文件中添加以下依赖。

<dependency>
   <groupId>org.springframework.cloud</groupId>
   <artifactId>spring-cloud-config-server</artifactId>
</dependency>

Gradle 用户可以在 build.gradle 文件中添加下面的依赖关系。

compile('org.springframework.cloud:spring-cloud-config-server')

现在,在你的 Spring Boot 应用程序主类文件中添加 @EnableConfigServer 注释。@EnableConfigServer 注释使你的 Spring Boot 应用程序充当配置服务器。

Spring Boot 应用程序主类文件如下所示 −

package com.tutorialspoint.configserver;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;

@SpringBootApplication
@EnableConfigServer
public class ConfigserverApplication {
   public static void main(String[] args) {
      SpringApplication.run(ConfigserverApplication.class, args);
   }
}

现在,将下面的配置添加到你的属性文件中,并将 application.properties 文件替换为 bootstrap.properties 文件。观察下面给出的代码 −

server.port = 8888
spring.cloud.config.server.native.searchLocations=file:///C:/configprop/
SPRING_PROFILES_ACTIVE=native

配置服务器在 Tomcat 8888 端口上运行,并且应用程序配置属性从本地搜索位置加载。

现在,在 file:///C:/configprop/ 中放置您的客户端应用程序应用程序。properties 文件。例如,您的客户端应用程序名称为 config-client ,然后将您的 application.properties 文件重命名为 config-client.properties 并将属性文件放置在路径 file:///C:/configprop/ 上。

config-client 属性文件的代码如下所示 −

welcome.message = Welcome to Spring cloud config server

完整的构建配置文件如下所示 −

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
   http://maven.apache.org/xsd/maven-4.0.0.xsd">

   <modelVersion>4.0.0</modelVersion>
   <groupId>com.tutorialspoint</groupId>
   <artifactId>configserver</artifactId>
   <version>0.0.1-SNAPSHOT</version>
   <packaging>jar</packaging>

   <name>configserver</name>
   <description>Demo project for Spring Boot</description>
   <parent>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-parent</artifactId>
      <version>1.5.9.RELEASE</version>
      <relativePath/> <!-- lookup parent from repository -->
   </parent>

   <properties>
      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
      <java.version>1.8</java.version>
      <spring-cloud.version>Edgware.RELEASE</spring-cloud.version>
   </properties>

   <dependencies>
      <dependency>
         <groupId>org.springframework.cloud</groupId>
         <artifactId>spring-cloud-config-server</artifactId>
      </dependency>
      <dependency>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-test</artifactId>
         <scope>test</scope>
      </dependency>
   </dependencies>

   <dependencyManagement>
      <dependencies>
         <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>${spring-cloud.version}</version>
            <type>pom</type>
            <scope>import</scope>
         </dependency>
      </dependencies>
   </dependencyManagement>

   <build>
      <plugins>
         <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
         </plugin>
      </plugins>
   </build>

</project>

Gradle 用户可以使用build.gradle 文件,如下所示 −

<scope>import</scope>
</dependency>
</dependencies>
buildscript {
   ext {
      springBootVersion = '1.5.9.RELEASE'
   }
   repositories {
      mavenCentral()
   }
   dependencies {
      classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
   }
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'

group = 'com.tutorialspoint'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8

repositories {
   mavenCentral()
}
ext {
   springCloudVersion = 'Edgware.RELEASE'
}
dependencies {
   compile('org.springframework.cloud:spring-cloud-config-server')
   testCompile('org.springframework.boot:spring-boot-starter-test')
}
dependencyManagement {
   imports {
      mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
   }
}

现在,创建一个可执行 JAR 文件,并使用以下 Maven 或 Gradle 命令运行 Spring Boot 应用程序 −

对于 Maven,使用以下给出的命令 −

mvn clean install

“BUILD SUCCESS”之后,您可以在目标目录中找到 JAR 文件。

对于 Gradle,使用以下给出的命令 −

gradle clean build

“BUILD SUCCESSFUL”之后,您可以在 build/libs 目录中找到 JAR 文件。

使用以下命令运行 JAR 文件 −

 java –jar <JARFILE>

现在,该应用程序已在 Tomcat 8888 端口上启动,如下所示 −

tomcat port 8888 output

现在,在您的 Web 浏览器中点击 URL http://localhost:8888/config-client/default/master ,您将可以看到您的 config-client 应用程序配置属性,如下所示。

config client application