我已经配置了这样的bean,并且我在文件中正确地使用了forum.host.url
<bean id="forum_host_url" class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiName" value="forum.host.url"/>
<property name="resourceRef" value="true"/>
</bean>
我需要从JSP访问这个bean值,我试过
${forum_host_url}
在我的jsp文件中但它没有获得任何值。什么是正确的方法?
答案 0 :(得分:9)
如果您使用InternalResourceViewResolver
,可以执行以下操作:
<bean 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="exposedContextBeanNames">
<list><value>forum_host_url</value></list>
</property>
</bean>
如果您愿意,可以使用exposeContextBeansAsAttributes
属性,JSP可以访问您的所有bean。