同样的代码 之前运行都正常 突然就开始报错 发现springcloud config的一个大坑
原因分析: github的地址是 https:// 开头 , 这里报了一个错误 could not be stablished because of SSL problems
解决办法: 增加一条配置
spring: cloud: config: server: git: skipSslValidation: true
解决!
同样的代码 之前运行都正常 突然就开始报错 发现springcloud config的一个大坑
原因分析: github的地址是 https:// 开头 , 这里报了一个错误 could not be stablished because of SSL problems
解决办法: 增加一条配置
spring: cloud: config: server: git: skipSslValidation: true
解决!