Spring中的reloadableresourcebundlemessagesource实现在jsp中

时间:2013-11-14 19:28:55

标签: java spring

为了在jsp中实现spring reloadableresourcebundlemessagesource,如何从JSP引用属性文件中的键值对?

1 个答案:

答案 0 :(得分:0)

只需使用Spring MessageTag即可。

这将导入一个Spring标记库。

<%@ taglib uri="http://www.springframework.org/tags" prefix="spring" %>

这将从属性文件中获取您的值:

<div>
   <spring:message code="message.code.from.properties.file"/>
</div>