目前使用spring“exposedContextBeanNames”允许我在我的视图中显示属性,但是对包含“。”的某些属性提出了问题。
我的xml设置为
<bean id="properties" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="locations">
<list><value>classpath:servers.properties</value> </list>
</property>
</bean>
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
<property name="prefix" value="/WEB-INF/views/"/>
<property name="suffix" value=".jsp"/>
<property name="exposeContextBeansAsAttributes" value="true"/>
<property name="exposedContextBeanNames">
<list>
<value>properties</value>
</list>
</property>
</bean>
我的“servers.properties”有许多值
value1=this is the first value
value.value1=this is my second value
在我的JSP中
${properties.value1}
将按预期显示“这是第一个值”,但
${properties.value.value1}
不起作用。我希望有人可以帮助我。感谢
答案 0 :(得分:3)
尝试${ properties['value.value1'] }
。