为了在jsp中实现spring reloadableresourcebundlemessagesource,如何从JSP中引用属性文件中存在的键值对?
问问题
374 次
1 回答
0
只需使用 Spring MessageTag。
这将导入一个 Spring 标记库。
<%@ taglib uri="http://www.springframework.org/tags" prefix="spring" %>
这将从属性文件中获取您的值:
<div>
<spring:message code="message.code.from.properties.file"/>
</div>
于 2013-11-14T20:42:12.733 回答