0
我想直接在我的jsp中使用屬性文件內的值。我正在使用瓷磚,並嘗試了以下事情以使其工作。不能訪問瓷磚屬性文件的值春天mvc
<!-- Load guide properties file -->
<bean id="GuideProperties"
class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="locations">
<list>
<value>WEB-INF/text/guide.properties</value>
</list>
</property>
</bean>
<bean
class="org.springframework.web.context.support.ServletContextAttributeExporter">
<property name="attributes">
<map>
<entry key="GuidedTut" value-ref="GuideProperties" />
</map>
</property>
</bean>
我試圖在JSP中訪問如下
${GuidedTut.guide.welcome.firstline}
項目運行良好,但我看不到屬性在JSP文件中值。
檢查是否HTTP:/ /thinkinginsoftware.blogspot.in/2012/01/access-properties-file-from-jspjstl-el.html將幫助你 – coreJavare