Springboot 2.x 无法读取yml配置值的问题:Could not resolve placeholder xxx value '${xxx}'

最近在用Springboot2.1 新建demo工程的时候,在DataSourceConfig类中通过 @Value("${spring.datasource.url}") 的方式引用application.yml 中配置的参数时,提示:

Could not resolve placeholder xxx value ‘${xxx}’

本文是基于Springboot最新版本2.1.1来处理的,在pom文件中增加依赖即可:

 <dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</dependency>

然后引用方式如下(图中是debug断点状态,可以看到配置参数确实已经成功赋值了):

Springboot 2.x 无法读取yml配置值的问题:Could not resolve placeholder xxx value '${xxx}'

上一篇:poj 2019 二维rmq *


下一篇:IDEA报错: Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'spring.datasource.url' in value "${spring.datasource.url}"