如何通过 JSP 为从 java bean 获取的变量赋值?

发布于 2024-12-10 23:50:57 字数 165 浏览 0 评论 0原文

我正在研究 JSP 和 servlet。我需要从 java bean 获取值并通过 JSP 为其分配一些其他变量。

通常我会以 ${abcd.variable_name} 的形式获取 html 标签中的值,

但是这个东西不能使用,因为我们想要在 <% %> 中获取一些值。

I am working on JSP and servlets. I need to fetch values from java bean and assign it some other variable over JSP.

Usually I fetch the value in html tags as ${abcd.variable_name}

but this thing can't be used it we want to get some value in <% %>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

成熟的代价 2024-12-17 23:50:57

这取决于豆子的存储位置。如果它作为请求属性存储在请求范围中,则只需将其作为请求属性取回:

<%
    Bean bean = (Bean) request.getAttribute("bean");
    // ...
%>

或者如果它作为会话属性存储在会话范围中,则只需将其作为会话属性取回:

<%
    Bean bean = (Bean) session.getAttribute("bean");
    // ...
%>

或者如果它存储在应用程序范围中作为应用程序属性,只需将其作为应用程序属性返回即可:

<%
    Bean bean = (Bean) application.getAttribute("bean");
    // ...
%>

但是,您正在 错误地方。它必须在普通的 Java 类(如 servlet)中完成,或者至少在您正在使用的 MVC 框架的操作类(如果有)中完成。

That depends on where the bean is stored. If it is stored in the request scope as a request attribute, just get it back as request attribute:

<%
    Bean bean = (Bean) request.getAttribute("bean");
    // ...
%>

Or if it's stored in the session scope as a session attribute, just get it back as session attribute:

<%
    Bean bean = (Bean) session.getAttribute("bean");
    // ...
%>

Or if it's stored in the application scope as an application attribute, just get it back as application attribute:

<%
    Bean bean = (Bean) application.getAttribute("bean");
    // ...
%>

However, you're doing the desired job at the wrong place. It has to be done in a normal Java class like a servlet or at least the action class of the MVC framework you're using, if any.

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