Spring - JSP 中的 bean 访问

发布于 2024-10-06 18:56:27 字数 414 浏览 1 评论 0原文

我已经配置了这样的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉栀 2024-10-13 18:56:27

如果您使用 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。

If you are using InternalResourceViewResolver you can do something like this:

<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>

If you prefer, you can use exposeContextBeansAsAttributes property and JSPs will be able to access all your beans.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文