Spring Cloud Hoxton 版本微服务项目搭建 config 配置中心并且开启安全认证

Spring Cloud Hoxton 版本微服务项目搭建 config 配置中心


前言

在上一篇文章博主已经讲解了项目如何创建,不会的话可以前往学习,传送门:Spring Cloud Hoxton 版本微服务项目搭建eureka注册中心 以及 Spring Cloud Hoxton 版本微服务项目搭建 admin 监控管理中心。

**本篇用来讲解–Spring Cloud Hoxton 版本微服务项目搭建 config 配置中心!
**


摘要

Spring Cloud Config 可以为微服务架构中的应用提供集中化的外部配置支持,它分为服务端和客户端两个部分,本文将对其用法进行详细介绍。


Spring Cloud Config 简介

Spring Cloud Config 分为服务端和客户端两个部分。服务端被称为分布式配置中心,它是个独立的应用,可以从配置仓库获取配置信息并提供给客户端使用。客户端可以通过配置中心来获取配置信息,在启动时加载配置。
Spring Cloud Config 的配置中心默认采用Git来存储配置信息,所以天然就支持配置信息的版本管理,并且可以使用Git客户端来方便地管理和访问配置信息。


在Git仓库中准备配置信息

由于Spring Cloud Config 需要一个存储配置信息的Git仓库,这里我们先在Git仓库中添加好配置文件再演示其功能,Git仓库地址为:https://github.com/chenxiban/SpringCloud-Config.git


配置仓库目录结构

Spring Cloud Hoxton 版本微服务项目搭建 config 配置中心并且开启安全认证_第1张图片


master分支下的配置信息

config-dev.yml:

config:
  info: "config info for dev(master)"

config-test.yml:

config:
  info: "config info for test(master)"

config-prod.yml:

config:
  info: "config info for prod(master)"

dev分支下的配置信息

config-dev.yml:

config:
  info: "config info for dev(dev)"

config-test.yml:

config:
  info: "config info for test(dev)"

config-prod.yml:

config:
  info: "config info for prod(dev)"

创建config-server模块

这里我们创建一个 config-center 模块来演示Spring Cloud Config 作为配置中心的功能(如何创建项目请自行查看注册中心篇有介绍)。

在pom.xml中添加相关依赖

    
    
        org.springframework.cloud
        spring-cloud-config-server
    

    
    
        org.springframework.cloud
        spring-cloud-starter-netflix-eureka-client
    

    
    
        org.springframework.boot
        spring-boot-starter-security
    

    
    
        de.codecentric
        spring-boot-admin-starter-client
    



**pom.xml 配置如下:**



    4.0.0
    
        com.cyj
        Family
        1.0-SNAPSHOT
    
    com.cyj
    config-center
    0.0.1-SNAPSHOT
    jar
    config-center
    CYJ:SpringCloud config center 配置中心

    

        
        
            org.springframework.cloud
            spring-cloud-config-server
        

        
        
            org.springframework.cloud
            spring-cloud-starter-netflix-eureka-client
        

        
        
            org.springframework.boot
            spring-boot-starter-security
        

        
        
            de.codecentric
            spring-boot-admin-starter-client
        

    

    
    
        
            
                org.springframework.cloud
                spring-cloud-dependencies
                
                ${spring-cloud.version}
                pom
                import
            
        
    

    
        
            
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
        
        config-center
    

    
    
        
            spring-milestones
            Spring Milestones
            https://repo.spring.io/milestone
            
                false
            
        
    


启动项如下:

package com.cyj.configcenter;

import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.config.server.EnableConfigServer;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;

/**
 * 启动类
 *
 * @author Chenyongjia
 * @Description: ConfigCenterApplication
 * @ClassName: Application.java
 * @Date 2020年01月02日 晚上7:29:06
 * @Email [email protected]
 */
@Slf4j
@EnableConfigServer
@EnableEurekaClient
@SpringBootApplication
public class ConfigCenterApplication {

    public static void main(String[] args) {
        log.info("=======》启动 config-center 配置中心项目ing......");
        SpringApplication.run(ConfigCenterApplication.class, args);
        log.info("=======》启动 config-center 配置中心成功......");
    }

}

yml 配置文件如下:

eureka:
  instance:
    # 每隔5s发送一次心跳
    lease-renewal-interval-in-seconds: 5
    # 告知服务端10秒还未收到心跳的话,就将该服务移除列表
    lease-expiration-duration-in-seconds: 10
    # 健康检查路径
    # health-check-url-path: /actuator/health
  client:
    registry-fetch-interval-seconds: 5 # 默认为30秒
    serviceUrl:
      #eureka注册中心地址
      defaultZone: http://localhost:8888/eureka/
      #defaultZone: http://localhost:8888/eureka/,http://localhost:8889/eureka/,http://localhost:8890/eureka/

# Admin 管理配置
management:
  endpoints:
    web:
      exposure:
        include: '*'
  endpoint:
    health:
      show-details: always

server:
  #项目端口号
  port: 9010
  tomcat:
    max-connections: 200
    max-threads: 300
    min-spare-threads: 0
    uri-encoding: UTF-8

spring:
  application:
    #服务名称,随便写
    name: config-center
  cloud:
    config:
      server:
        git:
          # 配置存储配置信息的Git仓库
          uri: https://github.com/chenxiban/SpringCloud-Config.git
          # github账户名
          username: xxx
          # github密码
          password: xxx
          # 开启启动时直接从git获取配置
          clone-on-start: true
          # 获取子目录下的配置
  		  # search-paths: '{application}'
  # 用于开启配置中心的安全认证,需要客户端认证
  security:
    user:
      # 配置用户名和密码
      name: root
      password: 123456

启动项目:获取配置文件信息的访问格式

# 获取配置信息
/{label}/{application}-{profile}
# 获取配置文件信息
/{label}/{application}-{profile}.yml

占位符相关解释

  • application:代表应用名称,默认为配置文件中的spring.application.name,如果配置了spring.cloud.config.name,则为该名称;
  • label:代表分支名称,对应配置文件中的spring.cloud.config.label;
  • profile:代表环境名称,对应配置文件中的spring.cloud.config.profile。

获取配置信息演示

访问 http://localhost:9010/master/config-dev 来获取master分支上dev环境的配置信息;

Spring Cloud Hoxton 版本微服务项目搭建 config 配置中心并且开启安全认证_第2张图片

其他的配置信息自己尝试访问一下!下一篇讲解配置中心客户端搭建。


最后

  • 更多参考精彩博文请看这里:《陈永佳的博客》

  • 喜欢博主的小伙伴可以加个关注、点个赞哦,持续更新嘿嘿!

你可能感兴趣的:(为霞而作,Spring,Cloud,Hoxton)