我正在尝试设置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