spring cloud 学习笔记:Config-Server统一配置中心搭建
在Spring Cloud中,我们可以使用Config Server来实现统一配置管理。以下是如何搭建Config Server的步骤:
- 创建一个新的Spring Boot项目,并添加Spring Cloud Config Server依赖。
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
</dependencies>
- 在
application.properties
或application.yml
中配置Config Server。
server:
port: 8888
spring:
cloud:
config:
server:
git:
uri: https://github.com/your-username/your-config-repo.git # 配置仓库地址
search-paths: config-repo # 配置仓库路径
username: your-username # Git仓库用户名(如无需认证可省略)
password: your-password # Git仓库密码(如无需认证可省略)
- 启动类上添加
@EnableConfigServer
注解。
@EnableConfigServer
@SpringBootApplication
public class ConfigServerApplication {
public static void main(String[] args) {
SpringApplication.run(ConfigServerApplication.class, args);
}
}
- 访问Config Server的端点格式为:
http://<config-server-host>:<port>/<application-name>/<profile>[/<label>]
例如:
http://localhost:8888/myapp/development
以上步骤就可以搭建一个基本的Config Server,用于管理和提供配置信息。在实际使用时,你可以根据自己的需求进行扩展和定制。
评论已关闭