Spring ResourceBundleMessageSource - 没有输出?

时间:2012-02-25 00:42:27

标签: java spring jsf

我正在尝试设置Spring ResourceBundleMessageSource,就像这样。

<bean id="messageSource"
    class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
    <property name="basename" value="classpath:text" />
    <property name="defaultEncoding" value="UTF-8"/>
</bean>

在xhtml中的用法:

... xmlns:spring="http://www.springframework.org/tags">
teststring should be here: <spring:message code="label.name" />

结果: 我没有输出。该物业不会被取走。

资源文件位于:src/main/resources/text.properties

我做错了什么? TY

0 个答案:

没有答案