Spring Cloud 入门教程 - 搭建配置中心服务
以下是搭建Spring Cloud配置中心服务的核心代码示例:
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;
@SpringBootApplication
@EnableConfigServer // 启用Spring Cloud Config服务端功能
public class ConfigServerApplication {
public static void main(String[] args) {
SpringApplication.run(ConfigServerApplication.class, args);
}
}
在application.properties
或application.yml
中配置服务信息、Git仓库地址等:
spring.application.name=config-server
server.port=8888
spring.cloud.config.server.git.uri=https://github.com/your-username/your-config-repo.git
spring.cloud.config.server.git.username=your-git-username
spring.cloud.config.server.git.password=your-git-password
确保你的Git仓库中有配置文件,并且文件名遵循特定的格式,例如application-{profile}.properties
或application-{profile}.yml
。
启动配置中心服务后,你可以通过访问http://localhost:8888/application-name/{profile}
来获取配置信息。
评论已关闭