gpt4 book ai didi

spring - 无法使用 ExposeContextBeansAsAttributes 检索属性

转载 作者:行者123 更新时间:2023-12-04 05:58:54 26 4
gpt4 key购买 nike

当前使用 spring 'exposedContextBeanNames' 来允许我在 View 中显示属性,但对某些包含“.”的属性存在问题。

我的 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} 

不起作用。我希望有人可以帮助我。谢谢

最佳答案

试试 ${ properties['value.value1'] } .

关于spring - 无法使用 ExposeContextBeansAsAttributes 检索属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9177926/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com