文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

SpringCloud微服务之Config知识点有哪些

2023-06-15 03:58

关注

这篇文章主要介绍了SpringCloud微服务之Config知识点有哪些,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

一、什么是Spring Cloud Config?

二、搭建GIT环境

创建仓库

SpringCloud微服务之Config知识点有哪些

创建文件

# config-dev.ymlconfig:  info: "config info for dev(master)"# config-test.ymlconfig:  info: "config info for test(master)"# config-prod.ymlconfig:  info: "config info for prod(master)"
# config-dev.ymlconfig:  info: "config info for dev(dev)"# config-test.ymlconfig:  info: "config info for test(dev)"# config-prod.ymlconfig:  info: "config info for prod(dev)"

三、服务端示例

添加依赖

<dependency>    <groupId>org.springframework.cloud</groupId>    <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>    <version>2.2.0.RELEASE</version></dependency><dependency>    <groupId>org.springframework.cloud</groupId>    <artifactId>spring-cloud-config-server</artifactId>    <version>2.2.0.RELEASE</version></dependency>

添加配置

@SpringBootApplication@EnableEurekaClient@EnableConfigServerpublic class SpringcloudConfigServerApplication {    public static void main(String[] args) {        SpringApplication.run(SpringcloudConfigServerApplication.class, args);    }}
server:  port: 8888spring:  application:    name: config-server  cloud:    config:      server:        # 配置存储配置信息的Git仓库        git:          uri: https://gitee.com/prochick/spring-cloud-config.git          # Git用户名          username: xxx          # Git密码          password: xxx          # 指定是否开启启动时直接从git获取配置          clone-on-start: trueeureka:  instance:    prefer-ip-address: true    instance-id: config-server-8888  client:    fetch-registry: false    register-with-eureka: true    service-url:      defaultZone: http://localhost:8010/eureka/

访问说明

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

代表应用名称,默认为配置文件中的spring.application.name,如果配置了spring.cloud.config.name,则为该名称

代表分支名称,对应配置文件中的spring.cloud.config.label

代表环境名称,对应配置文件中的spring.cloud.config.profile

测试使用

# 访问http://localhost:8888/master/config-dev来获取master分支上dev环境的配置信息# 访问http://localhost:8888/master/config-dev.yml来获取master分支上dev环境的配置文件信息# 访问http://localhost:8888/master/config-test.yml来获取master分支上test环境的配置文件信息# 访问http://localhost:8888/dev/config-dev.yml来获取dev分支上dev环境的配置文件信息

四、客户端示例

添加依赖

<dependency>   <groupId>org.springframework.boot</groupId>   <artifactId>spring-boot-starter-actuator</artifactId></dependency><dependency>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-starter-web</artifactId></dependency><dependency>    <groupId>org.springframework.cloud</groupId>    <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>    <version>2.2.0.RELEASE</version></dependency><dependency>    <groupId>org.springframework.cloud</groupId>    <artifactId>spring-cloud-starter-config</artifactId>    <version>2.2.0.RELEASE</version></dependency>

添加配置

bootstrap.yml

server:  port: 9999spring:  application:    name: config-client  cloud:    config:      # 配置中心地址      uri: http://localhost:8888      # 分支名称      label: master      # 配置文件名称      name: config      # 配置后缀名称      profile: deveureka:  instance:    prefer-ip-address: true    instance-id: config-client-9999    client:      fetch-registry: false      register-with-eureka: true      service-url:        defaultZone: http://localhost:8010/eureka/ # 暴露刷新监控 management:  endpoints:    web:      exposure:        include: 'refresh'

控制器类

@RestController@RefreshScopepublic class ConfigController {    @Value("${config.info}")    private String configInfo;    @GetMapping("/configInfo")    public String getConfigInfo() {        return configInfo;    }}

测试使用

# 访问http://localhost:9999/configInfo 可以获取到dev分支下dev环境的配置

五、安全认证示例

添加依赖

<dependency>    <groupId>org.springframework.cloud</groupId>    <artifactId>spring-cloud-config-server</artifactId>    <version>2.2.0.RELEASE</version></dependency><dependency>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-starter-security</artifactId></dependency>

添加配置

server:  port: 8888spring:  application:    name: config-server  # 配置存储配置信息的Git仓库  cloud:    config:      server:        git:          # 访问地址          uri: https://gitee.com/prochick/spring-cloud-config.git          # Git用户名          username: xxx          # Git密码          password: xxx          # 指定是否开启启动时直接从git获取配置          clone-on-start: true  # 配置用户名和密码  security:     user:      name: xxx      password: xxx
server:  port: 9999spring:  application:    name: config-client  cloud:    config:      # 配置中心地址      uri: http://localhost:8888      # 分支名称      label: master      # 配置文件名称      name: config      # 配置后缀名称      profile: dev      # 配置中心用户名      username: xxx      # 配置中心密码      password: xxx

六、集群搭建示例

添加配置

bootstrap.yml

server:  port: 9999spring:  application:    name: config-client  cloud:    config:      # 分支名称      label: master      # 配置文件名称      name: config      # 配置后缀名称      profile: dev      # 集群绑定      discovery:        enabled: true        service-id: config-servereureka:  instance:    prefer-ip-address: true    instance-id: config-client-9999    client:      fetch-registry: true      register-with-eureka: true      service-url:        defaultZone: http://localhost:8010/eureka/

测试访问

# 访问eureka-server

SpringCloud微服务之Config知识点有哪些

# 访问http://localhost:9999/configInfo 可以获取到dev分支下dev环境的配置

感谢你能够认真阅读完这篇文章,希望小编分享的“SpringCloud微服务之Config知识点有哪些”这篇文章对大家有帮助,同时也希望大家多多支持编程网,关注编程网行业资讯频道,更多相关知识等着你来学习!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯