英文:
Spring @Value not able to get value from YAML
问题
我有以下的YAML文件:
git.username: myusername
git.password: mypassword
而且在我的Java源文件中,我有以下的注解:
@Value("${git.username}")
private String username;
@Value("${git.password}")
private String password;
一切都运行得很好,直到这一点。然而,当我将YAML的格式更改为以下内容时,它无法检索到值。
git:
username: myusername
password: mypassword
在这种格式下,我应该如何引用YAML中的值? @Value(???)
英文:
I have the follow YAML file
git.username: myusername
git.password: mypassword
And in my Java Source file, I have the following annotation
@Value("${git.username}")
private String username;
@Value("${git.password}")
private String password;
Everything works fine till this point. However, it is not able to retrieve the value when I changed the format of the YAML to the following.
git:
username: myusername
password: mypassword
How should I reference the yaml value in this format? @Value(???)
专注分享java语言的经验与见解,让所有开发者获益!
评论