1. 介绍
Spring Cloud Config为分布式系统中的外部配置提供服务器和客户端支持。使用Config Server,您可以在所有环境中管理应用程序的外部属性。客户端和服务器上的概念映射与Spring Environment
和PropertySource
抽象相同,因此它们与Spring应用程序非常契合,但可以与任何以任何语言运行的应用程序一起使用。随着应用程序通过从开发人员到测试和生产的部署流程,您可以管理这些环境之间的配置,并确定应用程序具有迁移时需要运行的一切。服务器存储后端的默认实现使用git,因此它轻松支持标签版本的配置环境,以及可以访问用于管理内容的各种工具。很容易添加替代实现,并使用Spring配置将其插入。
2. 引入pom相关jar包,其中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> <parent> <groupId>com.ml.honghu</groupId> <artifactId>commonservice</artifactId> <version>0.0.1-SNAPSHOT</version> </parent> <artifactId>commonservice-config</artifactId> <packaging>jar</packaging> <name>commonservice-config</name> <description>Config Server</description> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</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> <executions> <execution> <id>1</id> <goals> <goal>repackage</goal> </goals> </execution> <execution> <id>2</id> <goals> <goal>build-info</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
3. 在src/main/java进行ConfigApplication.java启动文件配置:
package com.ml.honghu; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.config.server.EnableConfigServer; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; @EnableConfigServer @EnableEurekaClient @SpringBootApplication public class ConfigApplication { public static void main(String[] args) { SpringApplication.run(ConfigApplication.class, args); } }
4. 在src/main/resource下进行bootstrap.yml配置
server: port: 8888 spring: application: name: commonservice-config-server profiles: active: discovery,native cloud: config: server: git: uri: http://192.168.0.254/honghu.../honghu-config.git username: honghu password: 123456 searchPaths: config-dev security: basic: enabled: true user: name: honghu password: 123456 eureka: client: serviceUrl: defaultZone: http://honghu:123456@localhost:8761/eureka/ honghuZone: http://honghu:123456@localhost:8761/eureka/ registry-fetch-interval-seconds: 300 availability-zones: honghu: honghuZone instance: prefer-ip-address: true metadataMap: version: 1.0 variant: A user: ${security.user.name} password: ${security.user.password} management: security: enabled: false
注意: 如果不从远程git或者svn库加载配置文件信息,可以配置加载本地地址,比如window下配置使用:
server: port: 8888 spring: application: name: commonservice-config-server profiles: active: discovery,native cloud: config: server: <span style="color: #ff0000;">native.searchLocations: d:/honghu-config</span> security: basic: enabled: true user: name: honghu password: 123456 eureka: client: serviceUrl: defaultZone: http://honghu:123456@localhost:8761/eureka/ honghuZone: http://honghu:123456@localhost:8761/eureka/ registry-fetch-interval-seconds: 300 availability-zones: honghu: honghuZone instance: prefer-ip-address: true metadataMap: version: 1.0 variant: A user: ${security.user.name} password: ${security.user.password} management: security: enabled: false
到此,整个config服务项目配置完毕!!
从现在开始,我这边会将近期研发的spring cloud微服务云架构的搭建过程和精髓记录下来,帮助更多有兴趣研发spring (企业架构源码可以加求球:三五三六二四七二五九)cloud框架的朋友,大家来一起探讨spring cloud架构的搭建过程及如何运用于企业项目。
相关推荐
本文将详细介绍如何搭建Spring Cloud Config,并探讨其作为本地配置中心和Git配置中心的两种模式。 首先,我们需要理解Spring Cloud Config的核心概念。它由两个主要组件构成:Config Server(配置服务器)和Config...
在微服务架构中,每个服务都有自己的配置文件,这些配置文件中...Spring Cloud Config Server的搭建 Spring Cloud Config Client的配置 使用Git仓库存储配置 动态刷新配置 安全性和高可用性 示例项目代码 常见问题解答
这个详细Demo将涵盖Spring Cloud Config的使用方法,包括集群搭建和与Eureka服务发现组件的集成。让我们深入探讨这些关键知识点。 首先,Spring Cloud Config 由两个主要部分组成:Config Server 和 Config Client...
### Spring Cloud Config 配置中心搭建详解 #### 一、背景与问题分析 在现代软件开发尤其是采用微服务架构的应用程序开发过程中,每个独立的服务都需要维护自己的配置文件(如 `application.yml`)。这种方式虽然...
以上就是Spring Cloud Alibaba项目搭建及配置的基本步骤,主要涉及到了Spring Cloud的配置中心Nacos和Dubbo服务治理。实际开发中,还需要考虑异常处理、熔断机制、负载均衡等高级特性,这些可以通过Spring Cloud ...
Springcloud是Java领域一款强大的微服务治理框架,它基于Spring Boot进行快速构建,为开发者提供了在分布式系统(如配置管理、服务发现、断路器、智能路由、微代理、控制总线、一次性令牌、全局锁、领导选举、分布式...
### Spring Cloud Config 配置中心搭建与 Git 多文件夹存放配置文件 #### 一、Spring Cloud Config 配置中心简介 Spring Cloud Config 是一种分布式配置解决方案,它为微服务架构中的应用程序提供了一种集中式的...
为了监控配置服务的健康状态,Spring Cloud Config提供了健康指示器,用于暴露配置服务的状态信息。 **安全(Security)** 配置服务的安全是必要的,Spring Cloud Config支持多种安全机制来确保配置信息的安全。文档...
这个"springcloud实战项目框架搭建完整版"将带你了解并实践这一过程。 首先,我们需要理解Spring Boot。Spring Boot是Spring框架的一个延伸,旨在简化Java Web应用的初始搭建以及开发过程。它内置了Tomcat服务器,...
使用Spring Cloud搭建服务注册中心 2.使用Spring Cloud搭建高可用服务注册中心 3.Spring Cloud中服务的发现与消费 4.Eureka中的核心概念 5.什么是客户端负载均衡 6.Spring RestTemplate中几种常见的请求方式 7...
Spring Cloud Config 是一个用于管理微服务配置的工具,它允许开发者在远程服务器上集中存储和管理应用程序的配置,而不是在每个微服务实例中硬编码。这样可以方便地进行配置更新和版本控制,使得运维和开发过程更加...
jilinwula-springcloud-config.zip"中,我们关注的是SpringCloud的配置中心,这是一个关键的特性,用于集中管理和分发应用的配置,使得在分布式系统中能够动态更新配置而无需重启服务。 Spring Cloud Config由两...
SpringCloud Config 分布式配置中心 SpringCloud Bus 消息总线 SpringCloud Stream 消息驱动 SpringCloud Sleuth 分布式请求链路跟踪 SpringCloud Alibaba入门简介 SpringCloud Alibaba Nacos 服务注册和配置...
Spring Cloud 是一个基于 Spring Boot 实现的云应用开发工具集,它为开发者提供了在分布式系统(如配置管理、服务发现、断路器、智能路由、微代理、控制总线、一次性令牌、全局锁、领导选举、分布式会话、集群状态)...
2. SpringBoot与SpringCloud的结合:SpringBoot简化了Spring应用的初始搭建和配置过程,而SpringCloud则是基于SpringBoot实现的一套微服务解决方案,两者结合可以快速构建微服务应用。 3. 创建并部署第一个Spring...
6. 配置 SpringCloud Config 服务器,将配置信息集中管理。 7. 根据需求可选配 Spring Cloud Bus 和消息中间件,实现配置的动态更新。 8. 若需要进行分布式追踪,集成 Sleuth 和 Zipkin。 以上就是 SpringCloud ...
- Spring Cloud提供了一系列起步依赖,比如`spring-cloud-starter-netflix-eureka-client`(Eureka服务发现)、`spring-cloud-starter-config`(配置中心)、`spring-cloud-starter-zuul`(API网关)等。...
SpringCloud搭建微服务架构 SpringBoot 版本1.5.6.RELEASE Dalston.SR3 与时俱进,一起学习进步。...经过几天学习实践整理,已经完成SpringCloud 注册中心 、SpringCloud Config配置中心 搭建。
SpringCloud是中国Java开发者广泛使用的微服务框架,它包含了一系列组件,用于构建分布式系统。这个压缩包文件"SpringCloud 15个完整例子"提供了一系列从基础到进阶的示例项目,帮助用户深入理解并实践SpringCloud的...
本篇文章将深入讲解如何使用Spring Cloud搭建基本的服务配置,包括Eureka、Ribbon、Feign、Hystrix、Zuul和Spring Config。 1. **Eureka**:Eureka是Spring Cloud中的服务注册与发现组件。它允许各个微服务实例向...