apollo使用遇到的问题及解决方法
在使用apollo练习项目中,遇到了一些问题,在此记录一下。
首先不是部署在linus上,先是在本地测试,配置了一遍,然后才部署的,在本地测试中,依照官方文档修改配置,注册中心改为了自己原有的,主要就是在admin,config,portal三个包下修改,附上apollo官方文档
https://www.apolloconfig.com/#/zh/usage/apollo-user-guide
apollo是携程框架开源的配置中心,appid,cluster,nanespace,meta,这个是使用它时所需要的主要参数
附上bootstap.proties文件
server.port=8092
app.id=manage-cx
apollo.cacheDir=/opt/data/
apollo.cluster=atm-server
apollo.meta=http://localhost:8080
apollo.autoUpdateInjectedSpringProperties=true
apollo.bootstrap.enabled=true
apollo.bootstrap.namespaces=application
apollo.eagerLoad.enabled=true
通过这个去对接apollo,输入本地ip+端口,打开apollo
至此,本地配置apollo完成