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

Posted zhangfengxian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring实战第五版遇到的坑第14章spring.cloud.config.uri和token无效相关的知识,希望对你有一定的参考价值。

本文使用的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无效的主要内容,如果未能解决你的问题,请参考以下文章

Spring Cloud 微服务实战

Spring新手教程

数据库系统概论第五版(笔记+习题答案)(全)

《Python学习手册 第五版》 -第16章 函数基础

《Python学习手册 第五版》 -第17章 作用域

《Python学习手册 第五版》 -第35章 异常对象