为了在jsp中实现spring reloadableresourcebundlemessagesource,如何从JSP引用属性文件中的键值对?
答案 0 :(得分:0)
只需使用Spring MessageTag即可。
这将导入一个Spring标记库。
<%@ taglib uri="http://www.springframework.org/tags" prefix="spring" %>
这将从属性文件中获取您的值:
<div>
<spring:message code="message.code.from.properties.file"/>
</div>