首页 技术 正文
技术 2022年11月6日
0 收藏 650 点赞 628 浏览 5346 个字

在整个微服务体系中,除了注册中心具有非常重要的意义之外,还有一个注册中心。注册中心作为管理在整个项目群的配置文件及动态参数的重要载体服务。Spring Cloud体系的子项目中,Spring Cloud Config子项目就是该注册中心。在整个分布式框架系统中,充当重要角色。

官方解释

Spring Cloud provides tools for developers to quickly build some of the common patterns in distributed systems (e.g. configuration management, service discovery, circuit breakers, intelligent routing, micro-proxy, control bus, one-time tokens, global locks, leadership election, distributed sessions, cluster state). Coordination of distributed systems leads to boiler plate patterns, and using Spring Cloud developers can quickly stand up services and applications that implement those patterns. They will work well in any distributed environment, including the developer’s own laptop, bare metal data centres, and managed platforms such as Cloud Foundry.

本系列博文目录

【微服务】从零开始,轻松搞定SpringCloud微服务目录

说明:本系列源码持续更新,开始本篇之前先了解前面几篇文章。

开始起飞

基本思路:本文采用Git仓库作为配置文件的存放地址,通过创建一个配置中心服务器启动服务,然后再通过创建一个配置中心的客户端进行测试是否正常运转。

创建配置中心仓库

在原有的父类项目下创建一个普通的子项目,可以删除无关的文件,只留下空白项目。然后再创建一个测试的配置文件。
【微服务】之三:从零开始,轻松搞定SpringCloud微服务-配置中心

配置文件中加入测试数据

#随意设置的一个参数
myblog:
name: 千万之路刚开始-author-hyh
url: http://www.hanyahong.com
location: BeiJing

创建配置中心服务端

创建子项目

【微服务】之三:从零开始,轻松搞定SpringCloud微服务-配置中心

POM文件配置

在pom.xml文件中做一下配置


<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> <dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

配置项目resource配置文件

:整个博客是对各个子项目整合,因此加入了服务注册中心的相关配置

在resources文件夹下创建application.yml文件。并加入以下配置:

#服务端口
server:
port: 8082#服务注册中心配置
eureka:
client:
serviceUrl:
defaultZone: http://localhost:8081/eureka/#spring设置
spring:
application:
name: config-server
cloud:
config:
server:
git:
uri: https://github.com/hanyahong/spring-cloud-microservice.git
searchPaths: cloud-hyh-config-repo

创建主方法类

在创建完包以后,创建主方法。


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

至此,服务端配置完毕,启动服务器即可,等待客户端验证。

创建客户端

创建一个配置客户端,对刚刚的服务进行测试。
@EnableDiscoveryClient: 服务发现客户端注解,用于被发现。
@EnableConfigServer: 开启配置中心服务器配置。

创建客户端子项目

【微服务】之三:从零开始,轻松搞定SpringCloud微服务-配置中心

配置pom文件

在子项目pom.xml中加入一下依赖及插件。

 <dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<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>
</dependency>
</dependencies> <build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

创建配置文件

在子项目中resources文件夹下,创建bootstrap.yml文件。加入一下配置。

spring:
application:
#本项目名称
name: config-client
cloud:
config:
#配置中心服务器地址配置
uri: http://localhost:8082/
profile: default
label: master
retry:
# 配置重试次数,默认为6
max-attempts: 6
# 间隔乘数 默认1.1
multiplier: 1.1
# 初始重试间隔时间,默认1000ms
initial-interval: 1000
# 最大间隔时间,默认2000ms
max-interval: 2000server:
port: 8091
#服务发现配置
eureka:
client:
service-url:
defaultZone: http://localhost:8081/eureka/

创建程序入口

创建默认包以后创建ConfgClientApplication.java 文件。

/**
* @Description :配置中心启动类
* @Author hanyahong
* @Date 2017/12/6- 14:06
*/@SpringBootApplication
public class ConfigClientApplication {
public static void main(String[] args) {
SpringApplication.run(ConfigClientApplication.class, args);
}
}

创建测试API

创建一个测试API文件,TestApi.java。

/**
* @Description :配置中心-客户端展示API
* @Author hanyahong
* @Date 2017/12/6- 16:39
*/
@RefreshScope
@RestControllerpublic class TestApi { @Value("${myblog.name}")
private String name;
@Value("${myblog.url}")
private String url;
@Value("${myblog.location}")
private String location;
@RequestMapping("/blog-info")
public String getBlogInfo() {
return "从Github仓库中获取得到我博客信息:【"+location+","+","+url+","+name+"】";
}
}

@RefreshScope:开启刷新

至此,配置中心测试的客户端基本完毕。
对于子项目来说有三个子项目:
cloud-hyh-config 端口号:8082
cloud-hyh-config-client 端口号:8091
cloud-hyh-config-repo 纯存储使用,该文档下面的配置文件一定要上传到仓库后,才可以远程获取。

启动项目并测试

对服务注册中心(上篇有写)、服务配置中心、服务客户端分别进行启动。
可以通过注册中心查看是否都已经被纳入管理。
【微服务】之三:从零开始,轻松搞定SpringCloud微服务-配置中心

测试一: 注册中心测试
首先通过访问配置中心服务器的地址可以进行测试是否获取成功。
访问 http://localhost:8082/config-client.yml 对仓库中资源文件 测试是否返回结果。
另外也可以通过 http://localhost:8082/config-client/master 进行访问。浏览器显示返回结果:

"name":"config-client","profiles":["master"],"label":null,"version":"7169e90f628c85d582f3f9d5fceda36696ebd751","state":null,"propertySources":[{"name":"https://github.com/hanyahong/spring-cloud-microservice.git/cloud-hyh-config-repo/config-client.yml","source":{"myblog.name":"千万之路刚开始-author-hyh","myblog.url":"http://www.hanyahong.com","myblog.location":"BeiJing","config-client.name":"test"}}]}

测试二: 客户端访问API测试
通过客户端访问API http://localhost:8091/blog-info 显示结果:
从Github仓库中获取得到我博客信息:【BeiJing-Customs,,http://www.hanyahong.com,千万之路刚开始-author-hyh】
测试成功!

测试三: 动态更新参数测试
配置中心一个重要的功能就是你无须重启去生效一些参数配置,系统可以通过访问/refresh 进行动态刷新,将参数生效。

  1. 修改配置文件信息,上传git仓库。
  2. 使用PostMan 或其他工具进行一次POST请求 API:http://localhost:8091/refresh (一定要看清楚,POST请求,浏览器直接访问无效,会报Request method ‘GET’ not supported 错误)。
  3. 再一次访问 http://localhost:8091/blog-info ,可以看到已在未重启的情况下,配置动态更新。

后续说明

因配置中心涉及很多数据的更新,不可能每次通过这种方式去动态更新,后续会有专门消息总线模块的讲解,将通过消息总线的机制去进行配置的传输。

源码地址

GitHub:https://github.com/hanyahong/spring-cloud-microservice

相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:9,086
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,561
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,410
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,183
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,820
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,903