Spring cloud Config center 配置中心 server端
Posted 旺仔哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring cloud Config center 配置中心 server端相关的知识,希望对你有一定的参考价值。
一.新建spring boot项目
二.注解@EnableConfigServer
@EnableDiscoveryClient
@EnableConfigServer
@SpringBootApplication
public class ConfigServerApplication
public static void main(String[] args)
SpringApplication.run(ConfigServerApplication.class, args);
三.创建git远程配置中心仓库
四.application.yml 配置文件
eureka:
client:
service-url:
defaultZone: http://localhost:8761/eureka/
spring:
application:
name: config
cloud:
config:
server:
git:
uri: https://gitee.com/xxxxxx/springcloud-config.git //远程仓库地址
basedir: /Users/wuyahan/Desktop/codes/springcloud/basedir //本地保存配置文件目录
username: username //git账号
password: password //git密码
server:
port: 8083
五.启动配置中心服务,网址访问http://localhost:8083/order-test.yml
以上是关于Spring cloud Config center 配置中心 server端的主要内容,如果未能解决你的问题,请参考以下文章
无法通过 spring.cloud.config.enabled:false 禁用 Spring Cloud Config
0701-spring cloud config-简介Config Server开发Config Client开发
问题 spring-cloud-config 和 spring-cloud-bus
spring-cloud-config——Quick Start