符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
Spring Cloud 提供了一个部署微服务的平台,包括了微服务中常见的组件:配置中心服务, API网关,断路器,服务注册与发现,分布式追溯,OAuth3,消费者驱动合约等。我们不必先知道每个组件有什么作用,随着教程的深入,我们会逐渐接触到它们。一个分布式服务大体结构见下图(图片来自于:spring.io):
我们提供的服务有:成都做网站、成都网站设计、微信公众号开发、网站优化、网站认证、洱源ssl等。为成百上千企事业单位解决了网站和推广的问题。提供周到的售前咨询和贴心的售后服务,是有科学管理、有技术的洱源网站制作公司
使用Spring Cloud搭建分布式的系统十分简单,我们只需要几行简单的配置就能启动一系列的组件,然后可以在代码中控制、使用和管理这些组件。Spring Cloud使用Spring Boot作为基础框架,可以参考我的上一篇博客介绍如何创建一个Spring Boot项目, Spring Boot 2.0.1 入门教程。本教程将教大家如何配置服务中心服务,并通过web客户端读取配置。
Gitee码云
首先用IntelliJ创建一个Maven项目,pom.xml文件内容如下:
4.0.0
cn.zxuqian
web
1.0-SNAPSHOT
org.springframework.boot
spring-boot-starter-parent
2.0.1.RELEASE
org.springframework.cloud
spring-cloud-starter-config
org.springframework.boot
spring-boot-starter-actuator
org.springframework.boot
spring-boot-starter-web
org.springframework.cloud
spring-cloud-dependencies
Finchley.M9
pom
import
1.8
org.springframework.boot
spring-boot-maven-plugin
spring-milestones
Spring Milestones
https://repo.spring.io/libs-milestone
false
dependencyManagement
可以为所有的依赖指定统一的版本号,这里的Spring-cloud依赖版本均为Finchley.M9,然后使用repository
指定此版本的仓库。spring-cloud-starter-config
提供了访问配置中心服务的API接口。新建一个控制器类 cn.zxuqian.controllers.HelloController
, 并添加如下代码:
package cn.zxuqian.controllers;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RefreshScope
@RestController
public class HelloController {
@Value("${message: 本地消息}")
private String message;
@RequestMapping("/message")
public String message() {
return this.message;
}
}
一个简单的控制器,匹配/message
路径,并返回message
变量的值。这里先不用管 @RefreshScope
这个注解,等下会用到时再讲。@Value
会取来自配置中心服务的配置项,或本地环境变量等等,此处取了配置中心的message
的值,并给了它一个默认值"本地消息",即如果远程配置中心不可用时,此变量将会用默认值初始化。
我们需要在web客户端项目完全启动之前去加载配置中心的配置项,所以需要在src/main/resources
下创建bootstrap.yml
文件,然后指定此客户端的名字和远程配置中心的uri:
spring:
application:
name: web-client
cloud:
config:
uri: http://localhost:8888
yml相比properties文件更加简洁,不用写很多重复的前缀,上边的内容可以转换为对应的properties:
spring.application.name=web-client
spring.cloud.config.uri=http://localhost:8888
spring.application.name
指定了此项目的名字,用来取配置中心相同文件名的配置文件,即配置中心应有一文件名为web-client.yml
的配置文件。spring.cloud.config.uri
指定了远程配置中心服务的uri地址,默认为http://localhost:8888新建一个Maven项目,使用如下pom配置:
4.0.0
cn.zxuqian
config-server
1.0-SNAPSHOT
jar
org.springframework.boot
spring-boot-starter-parent
2.0.1.RELEASE
UTF-8
1.8
org.springframework.cloud
spring-cloud-config-server
org.springframework.boot
spring-boot-starter-test
test
org.springframework.cloud
spring-cloud-dependencies
Finchley.M9
pom
import
org.springframework.boot
spring-boot-maven-plugin
spring-milestones
Spring Milestones
https://repo.spring.io/libs-milestone
false
spring-cloud-config-server
即为配置中心服务的核心依赖。
新建一个Java类cn.zxuqian.Application
,添加如下代码:
package cn.zxuqian;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;
@EnableConfigServer
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
@EnableConfigServer
这一条注解即可把该Maven项目作为配置中心服务启动。配置中心的文件都是基于版本控制的,所以需要在本地新建一个git仓库来保存配置文件。或者也可用公共远程git仓库,github, 码云等。在任意位置(如项目的上级目录)创建一空白文件夹,这里叫做config
,可以使用任何名字。然后进入此文件夹下,运行
$ git init
来初始化git仓库,然后新建一个文件,名为web-client.yml
,并添加如下内容:
message: 此条消息来自于cofig server
注意此文件名需要和之前在web项目中配置的spring.application.name
保持一致。这个文件的内容就是web客户端要获取的message的值。创建完成之后,运行如下git命令提交到本地仓库:
$ git add web-client.yml
$ git commit -m "added web-client.yml"
我们需要为配置中心指定上述创建的git仓库地址。在src/main/resources
下创建applicaiton.yml
文件,提供如下内容:
server:
port: 8888
spring:
cloud:
config:
server:
git:
uri: ${HOME}/development/codes/backend/gitee/config
此文件指定了配置中心服务的端口号,和保存配置文件的git仓库目录,如果是远程仓库,可以直接指定url地址。到此,配置中心服务创建完成。
首先启动配置中心服务,使用spring-boot maven插件:spring-boot:run。启动成功后再启动web客户端,访问http://localhost:8080/message
,如果看到此条消息来自于cofig server
即配置成功。然后关闭配置中心服务,再重启web客户端,访问http://localhost:8080/message
,我们就会看到本地消息
。
那么每次配置更新后都要重启是不是很麻烦?Spring boot提供了spring-boot-starter-actuator
组件,用来进行生产环境的维护,如检查健康信息等。还记得上面HelloController
的@RefreshScope
注解吗?使用它我们可以动态的加载配置中心修改后的配置。然后我们还需要在配置中心的web-client.yml
添加如下内容用以暴露acurator的/refresh
终端api。
message: 此条消息来自于cofig server
management:
endpoints:
web:
exposure:
include: "*"
更新完成后提交的git仓库,然后重启配置中心服务和web客户端。修改message为
message: 更新:此条消息来自于cofig server
然后发送一个空的post请求到/refresh
$ curl http://localhost:8080/actuator/refresh -d {} -H "Content-Type: application/json"
之后刷新页面,即可看到更新后的消息。
现在我们搭建好了一个配置中心服务,它是根据每个组件的spring.application.name
来决定读取哪个配置文件,然后我们用了acurator的/refresh
api在运行时刷新配置项。另外配置项都是基于版本控制的,可以方便的进行还原和更新。通过这个教程可以看到Spring Cloud的各组件的配置相当简单,基本就只用一条注解就可以创建一个完整的服务组件。
欢迎访问我的博客原文:Spring Cloud 入门教程 - 搭建配置中心服务