【发布时间】:2016-12-07 12:12:07
【问题描述】:
我的 Spring Web 模型-视图-控制器 (MVC) 框架中有这个类。 Spring Web 模型-视图-控制器 (MVC) 框架的版本是 3.2.8。
在我的 applicationContext.xml 我有这个 bean 定义
<bean id="applicationProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="locations">
<list><value>classpath:config/application.properties</value></list>
</property>
</bean>
这是文件的内容:
templateName = BLE_NORDIC
但是当我在 JSP 中读取这个属性时,我得到了????
<fmt:message key="templateName"/>' >
【问题讨论】:
标签: spring spring-mvc