从Spring启动控制器中的消息属性读取

时间:2015-05-13 13:48:40

标签: java spring spring-boot

我的春季启动应用程序中有一个messages.properties文件:

mymessage = this message

现在,有没有办法在spring boot中从我的一个控制器方法中获取此值?

1 个答案:

答案 0 :(得分:1)

我不知道与spring boot有关的message.properties文件,但我知道您可以有一个service.properties文件和/或application.properties文件。要从这两种方法中读取任何一种,您可以使用@Value,请参阅此处的文档https://www.baeldung.com/spring-value-annotation

这将允许您将.properties文件中的值注入到控制器中