2016-12-07 6 views
2

このクラスは、Spring Web Model-View-Controller(MVC)フレームワークで使用しています。 Spring Web Model-View-Controller(MVC)フレームワークのバージョンは3.2.8です。Spring Web MVC 3.2.8でのプロパティキーの読み込み

私はこのBean定義

<bean id="applicationProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean"> 
<property name="locations"> 
<list><value>classpath:config/application.properties</value></list> 
</property> 
</bean> 

これは、ファイルの内容である必要があり、私のapplicationContext.xml

templateName = BLE_NORDIC 

が、私はJSPでこのプロパティを読んだとき、私は????

<fmt:message key="templateName"/>' > 
を得ました

答えて

1

メッセージリソースバンドルとして追加する

message.properties

TEMPLATENAME = BLE_NORDIC

<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource"> 
    <property name="basenames"> 
     <list> 
     <value>message</value> 
     </list> 
    </property> 
    </bean> 
関連する問題