标签: spring-boot configuration yaml
我正在尝试在yaml中为我的Spring Boot项目创建一个配置文件。
对于测试我只设置了一些值:
user: test: hello
现在我正在尝试获取user.test的信息,但收到错误消息Could not resolve placeholder 'user.test' in value "${user.test}"
user.test
Could not resolve placeholder 'user.test' in value "${user.test}"
奇怪的是,如果我的配置文件只有user.test: hello,那么一切正常。
user.test: hello
在使用yml文件作为属性之前,我是否需要设置一些内容?