springboot 集成 apollo使用
时间: 2023-11-08 22:52:42 浏览: 161
对于SpringBoot集成Apollo的使用,需要进行以下步骤:
1. 在pom.xml文件中添加Apollo的依赖:
```
<dependency>
<groupId>com.ctrip.framework.apollo</groupId>
<artifactId>apollo-client</artifactId>
<version>1.3.0</version>
</dependency>
```
2. 在启动类上添加@SpringBootApplication注解,并在main方法中启动SpringBoot应用:
```
@SpringBootApplication
public class SpringbootApolloApplication {
public static void main(String[] args) {
SpringApplication.run(SpringbootApolloApplication.class, args);
}
}
```
3. 在application.properties或application.yml中配置Apollo的相关信息:
```
# Apollo集成
# Apollo配置应用的appid
app.id=springboot-apollo-demo1
# Apollo meta-server地址,一般与config-server地址相同
apollo.meta=http://192.168.0.153:8080
# 启用Apollo配置开关
apollo.bootstrap.enabled=true
apollo.bootstrap.eagerLoad.enabled=true
# Apollo使用的配置命名空间,多个以逗号分隔
apollo.bootstrap.namespaces=application
```
这样就完成了SpringBoot集成Apollo的配置。
阅读全文