春季 @Value 无法从 YAML 获取值

huangapple 未分类评论46阅读模式
英文:

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(???)

huangapple
  • 本文由 发表于 2020年7月23日 17:33:20
  • 转载请务必保留本文链接:https://java.coder-hub.com/63051154.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定