Config服务端连接Git配置的技巧
作者:为BUG消得人憔悴 时间:2023-03-12 02:32:59
Config:服务端连接Git配置,代码如下所示:
1、导入依赖
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
</dependencies>
2、编写配置文件
server:
port: 3344
spring:
application:
name: Git-config-3344
#连接远程仓库
cloud:
config:
server:
git:
uri: https://gitee.com/xiao-yunshan/gittest.git
3、编写启动类
@SpringBootApplication
@EnableConfigServer
public class Git_3344 {
public static void main(String[] args) {
SpringApplication.run(Git_3344.class,args);
}
}
4、启动访问
http://localhost:3344/application-dev.yml
来源:https://blog.csdn.net/weixin_43612925/article/details/120269249
标签:Config,Git,配置
0
投稿
猜你喜欢
用Python实现批量生成法务函代码
2022-05-27 15:05:28
Python叠加两幅栅格图像的实现方法
2023-07-25 17:14:06
一文搞懂Vue3中的异步组件defineAsyncComponentAPI的用法
2024-04-29 13:09:08
树型结构列出指定目录里所有文件的PHP类
2023-11-17 04:49:04
讲解Python3中NumPy数组寻找特定元素下标的两种方法
2023-07-17 09:58:42
getElementsByAttribute
2009-10-27 12:13:00
pytorch 输出中间层特征的实例
2022-06-08 07:36:39
Django学习之静态文件与模板详解
2022-12-13 13:19:58
使用python绘制温度变化雷达图
2021-06-23 05:44:02
Pygame实现监听鼠标示例详解
2021-12-16 00:42:58
asp如何显示全部的环境变量?
2010-06-08 09:34:00
用Python做的数学四则运算_算术口算练习程序(后添加减乘除)
2023-04-10 13:27:35
简单有效上手Python3异步asyncio问题
2022-01-14 02:28:34
分享101个MySQL调试与优化技巧
2024-01-20 23:36:58
解决python打不开文件(文件不存在)的问题
2021-10-15 02:39:46
Python学习之名字,作用域,名字空间(下)
2021-04-28 05:45:20
如何通过神经网络实现线性回归的拟合
2023-04-24 06:15:07
python3爬虫GIL修改多线程实例讲解
2023-06-09 22:33:58
Python 线程池模块之多线程操作代码
2022-06-14 06:01:47
MySql循环插入数据
2010-10-14 13:50:00