我设置了ReloadableResourceBundleMessageSource,如spring文档中所示。我使用以下页面:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:p="http://primefaces.org/ui"
xmlns:spring="http://www.springframework.org/tags"
xmlns:ui="http://java.sun.com/jsf/facelets">
...
<b><spring:message code="general.welcome"/></b> ${user.firstName} ${user.lastName}
...
运行应用程序并检查源代码时,我仍然看到:
<b><spring:message code="general.welcome"/>
不渲染messages_en.properties文件中定义的消息。
如何获取更多信息以跟踪正在发生的事情,并且标记未按提及的消息输出呈现?
谢谢&amp;最亲切的问候, ArnKor