码迷,mamicode.com
首页 > 编程语言 > 详细

【spring实战第五版遇到的坑】第14章spring.cloud.config.uri和token无效

时间:2019-04-24 17:27:50      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:gre   code   config   sources   rap   bootstra   生效   路径   root   

本文使用的Spring Boot版本为:2.1.4.RELEASE Spring Cloud版本为:Greenwich.SR1

按照书上的做法,在application.yml中配置配置服务器的地址和Vault token相关的配置时,在启动的时候发现这两个配置没有生效,使用的还是默认的配置服务器的地址:http://localhost:8080, token也是空的。

解决办法,在类路径下新建bootstrap.yml或者bootstrap.properties文件,也就是在项目的src/main/resources/目录下加入如下的配置:

spring:
  cloud:
    config:
      uri: http://192.168.1.125:8888
      token: roottoken

重启服务器后,发现问题成功解决!!!

【spring实战第五版遇到的坑】第14章spring.cloud.config.uri和token无效

标签:gre   code   config   sources   rap   bootstra   生效   路径   root   

原文地址:https://www.cnblogs.com/zhangfengxian/p/10763568.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!