SpringBoot 集成Apollo
Posted G_whang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot 集成Apollo相关的知识,希望对你有一定的参考价值。
一、准备工作
1.1 Java
- Apollo服务端:1.8+
- Apollo客户端:1.7+
由于Quick Start会在本地同时启动服务端和客户端,所以需要在本地安装Java 1.8+。
1.2 mysql
- 版本要求:5.6.5+
Apollo的表结构对timestamp使用了多个default声明,所以需要5.6.5以上版本。
1.3 下载Quick Start安装包
https://github.com/nobodyiam/apollo-build-scripts
1.4导入SQL文件到数据
1.5 配置数据库连接信息
Apollo服务端需要知道如何连接到你前面创建的数据库,所以需要编辑demo.sh,修改ApolloPortalDB和ApolloConfigDB相关的数据库连接串信息。
1.6启动Apollo配置中心
启动脚本
./demo.sh start
如果启动遇到了异常,可以分别查看service和portal目录下的log文件排查问题。
看到如下输出就是启动成功了
==== starting service ====
Service logging file is ./service/apollo-service.log
Started [10768]
Waiting for config service startup.......
Config service started. You may visit http://localhost:8080 for service status now!
Waiting for admin service startup....
Admin service started
==== starting portal ====
Portal logging file is ./portal/apollo-portal.log
Started [10846]
Waiting for portal startup......
Portal started. You can visit http://localhost:8070 now!
然后访问:http://localhost:8070
输入用户名apollo,密码admin后登录
点击SampleApp进入配置界面,可以新增修改发布配置
也可以添加新的namespace
然后本地代码集成Apollo
引入POM文件
<dependency>
<groupId>com.ctrip.framework.apollo</groupId>
<artifactId>apollo-client</artifactId>
<version>1.1.1</version>
</dependency>
增加配置文件
server:
port: 8081
apollo:
bootstrap:
enabled: true
namespaces: application,TEST1.dataSource,occupation
meta: '@apollo.meta@'
app:
id: SampleApp
创建test
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class ApolloTestController {
@Value("${timeout}")
private String timeout;
@GetMapping("/test")
public String test(){
return timeout+"-----";
}
}
启动类配置
命令如下:-Dapollo.configService=http://127.0.0.1:8080
启动项目
访问:http://localhost:8081/test
即可读取配置了
如果要修改部门或者其他配置的时候,可以到系统参数里面进行修改
到数据库apolloportaldb 中的serverconfig 中粘贴 key值来进行查询
安装给定的格式进行修改
新建Namespace
增加完以后会跳到权限配置的页面
如果新增的有人员的话,可以给他们设置Namespace 的新增和发布权限
新增配置
新增完成后会有提示
然后点击发布即可访问到
官方文档:https://www.apolloconfig.com/#/zh/README
以上是关于SpringBoot 集成Apollo的主要内容,如果未能解决你的问题,请参考以下文章
linux安装apollo;以及springcloud采用apollo配置时使用本地配置覆盖;springboot从apollo拉取配置