我该如何使用@Value正确?

问题描述 投票:0回答:1

我使用带有dubbo-starter的spring boot starter 2.1.3。

如果您有任何想法或建议,请告诉我,谢谢!

as you see it should not be null value , i don't know why.

java spring-boot annotations apache-dubbo
1个回答
1
投票

@Value注释从application.property文件或application.yml文件中查找值。

您可以在这些文件中定义值,然后使用@Value注入它们。

请参阅this以从.propertythis加载值以使用.yml文件。

Here是一种更好的加载配置的方法。

您可能还想了解Spring Boot用于加载来自不同环境/文件Here的配置的顺序。

HTH。

© www.soinside.com 2019 - 2024. All rights reserved.