私はこのような豆とapp-servlet.xml
で私のプロパティを設定しています:MVCアプリ
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="/WEB-INF/my.properties"></property>
</bean>
ほとんどの時間、私は私のコントローラのプロパティにアクセスしますか、
@Value("${dbtype}")
public String dbType;
しかし、JSPファイルでプロパティを使用してコントローラをバイパスしたい場合はどうすればよいでしょうか。意味私は、コントローラからモデル属性としてJSPに渡される値型を望んでいません。
jspで直接プロパティにアクセスする方法はありますか? @ nkjava.blogspotと同じプロパティBeanを(作成するための
<util:properties
id="propertyConfigurer"
location="classpath:yourPropertyFileClasspathHere"
/>
<context:property-placeholder properties-ref="propertyConfigurer" />
:文脈では
チェックこのリンクhttp://forum.springsource.org/showthread.php?96715-Reading-values-stored-in-properties-file-from-JSP – nav0611