基于l配置未⽣效的解决
我就废话不多说了,⼤家还是直接看代码吧~
<!--需要引⼊该jar才能使bootstrap配置⽂件⽣效-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-context</artifactId>
</dependency>
补充知识:SpringBoot不读取l/properties⽂件
今天写创建了⼀个SpringBoot项⽬,配置⽂件从其他项⽬拷贝了⼀份l
之前⼀直⽤的l
⼼想:l 优先级没有l ⾼,bootstrap配置⽂件肯定没问题
项⽬⼀跑来,发现配置⽂件⾥⾯的内容没读取到。
之后通过各种查资料,才明⽩了l 和l 的区别,不仅仅是优先级的问题。
先说我的问题是什么原因吧:
SpringBoot 项⽬中如果没有依赖 spring-cloud-context 的话,是不会读取bootstrap.properties ⽂件
也就是说
如果你的项⽬仅仅是⼀个SpringBoot项⽬,只会识别l配置⽂件。
由于SpringCloud是基于SpringBoot构建的,所有SpringCloud项⽬两种⽂件都会识别,这个时候才有优先级的说
法,SpringCloud项⽬是会优先读取bootstrap配置在读取application配置。
引⽤Spring官⽹的⼀句话
A Spring Cloud application operates by creating a “bootstrap” context, which is a parent context for the main
application. Out of the box it is responsible for loading configuration properties from the external sources, and also decrypting properties in the local external configuration files.
SpringCloud 应⽤是基于⼀个 “bootstrap”的上下⽂运⾏的。
也就说明了 bootstrap这个配置是SpringCloud 应⽤才会⽤的。
⽽且这个配置是不能被覆盖的,也就是优先级⽐application配置中的⾼。
什么配置在application配置?什么配置在bootstrap⾥⾯配置?
1、当使⽤ Spring Cloud Config Server 的时候,spring.application.name 和 fig.server.git.uri应该在l ⾥⾯指定
springcloud难学吗2、⼀些加密解密的配置也应该配置在bootstrap⾥⾯
英⽂好的可以参考官⽹⽂章:
以上这篇基于l配置未⽣效的解决就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。