Spring - JSP 中的 bean 访问
我已经配置了这样的 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 文件中尝试过,但它没有获得任何值。什么是正确的方法?
I have configured a bean like this and I have forum.host.url in the file properly
<bean id="forum_host_url" class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiName" value="forum.host.url"/>
<property name="resourceRef" value="true"/>
</bean>
I need to access this bean value from a JSP, I have tried
${forum_host_url}
in my jsp file but its not getting any value. what is the correct way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用
InternalResourceViewResolver
,您可以执行以下操作:如果您愿意,您可以使用
exposeContextBeansAsAttributes
属性,JSP 将能够访问您的所有 bean。If you are using
InternalResourceViewResolver
you can do something like this:If you prefer, you can use
exposeContextBeansAsAttributes
property and JSPs will be able to access all your beans.