在项目的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>

怎么在项目中远程读取Apollo配置文件1.png

在项目中创建application.properties文件

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

怎么在项目中远程读取Apollo配置文件2.png
在启动类中加入@EnableApolloConfig注解

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

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

怎么在项目中远程读取Apollo配置文件3.png

Last modification:June 26, 2019
如果觉得这篇技术文章对你有用,请随意赞赏