springcloud做微服务时,普通服务无法访问Eureka注册中心上的配置中心的问题
报这个错误:
Consider the following:
If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active).
纯入门级别问题,但是我搞了快两天,才搞出来,权当自己留作笔记了,遇到相同问题的同学可以参考下
config配置中心服务已经在注册中心注册(我的项目是统一配置的),因为注册默认使用hostname,所以当访问配置中心配置时,会是这样的地址
http://[配置中心的hostname]/dev/master
然后我把bootstrap.yml改成这样
eureka:
instance:
hostname: localhost
instanceId: s p r i n g .