我的春季启动应用程序中有一个messages.properties
文件:
mymessage = this message
现在,有没有办法在spring boot中从我的一个控制器方法中获取此值?
答案 0 :(得分:1)
我不知道与spring boot有关的message.properties文件,但我知道您可以有一个service.properties文件和/或application.properties文件。要从这两种方法中读取任何一种,您可以使用@Value,请参阅此处的文档https://www.baeldung.com/spring-value-annotation
这将允许您将.properties文件中的值注入到控制器中