6-3节,第6分39秒,根据视频教程启动拆分后的order,将application.yml修改成bootstrap.yml,启动报错
来源:6-3 Config Client
wuxichao
2020-04-28
order-dev.yml 文件能在git上获取到本地来
config.yml配置项
spring:
application:
name: springcloud-config
cloud:
config:
server:
git:
uri: https://gitee.com/wuxichao/config-repo.git
username: xxx
password: xxx
basedir: D:/Git/mpconfigasedir
eureka:
instance:
hostname: localhost
client:
service-url:
defaultZone: http://localhost:8761/eureka/
order-dev.yml 配置项(git)
spring:
application:
name: eureka-order
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
username: ****
password: ****
url: jdbc:mysql://47.104.238.212:3306/springcloudallowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8
jap:
show-sql: true
eureka:
client:
service-url: #Eureka Server 注册中心的地址用于client 与server进行交流
defaultZone: http://localhost:8761/eureka/
fetch-registry: true #表示从fetch server 获取注册信息
env:
dev
**(上面配置复制粘贴过来后变形了,在没有将application配置拆分到git上去时候,在本地是可以运行的,错误见截图!)
3回答
-
看图。
012020-05-11 -
廖师兄
2020-05-06
没有读取到数据库配置,看看是不是没配置,或者格式写错了,注意yml格式
0132020-05-11 -
廖师兄
2020-04-29
【No active profile set, falling back to default profiles: default】
这是info日志,不是错误,没有问题的。
应该去找错误日志。
一般是因为从CONFIIG获取不到配置导致启动失败。
你应该用浏览器先访问CONFIG看能不能获取order的配置
032020-05-06
SpringCloud Finchley(M2+RELEASE+SR2)微服务实战
5668 学习 · 2489 问题
相似问题