宋子宪博客

Spring Boot项目怎么远程读取Apollo配置文件

在项目的pom文件中引入maven依赖

<dependency>
    <groupId>com.ctrip.framework.apollo</groupId>
    <artifactId>apollo-client</artifactId>
    <version>1.0.0</version>
</dependency>

<dependency>
    <groupId>com.ctrip.framework.apollo</groupId>
    <artifactId>apollo-core</artifactId>
    <version>1.0.0</version>
</dependency>

在项目中创建application.properties文件

app.id=app-shop-weixin
apollo.meta=http://192.168.78.130:8080


在启动类中加入@EnableApolloConfig注解

@EnableEurekaClient
@SpringBootApplication
@EnableSwagger2Doc
@EnableApolloConfig
public class AppWeiXin {

    public static void main(String[] args) {
        SpringApplication.run(AppWeiXin.class,args);
    }
}

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »