如何通过 JSP 为从 java bean 获取的变量赋值?
我正在研究 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于豆子的存储位置。如果它作为请求属性存储在请求范围中,则只需将其作为请求属性取回:
或者如果它作为会话属性存储在会话范围中,则只需将其作为会话属性取回:
或者如果它存储在应用程序范围中作为应用程序属性,只需将其作为应用程序属性返回即可:
但是,您正在 错误地方。它必须在普通的 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:
Or if it's stored in the session scope as a session attribute, just get it back as session attribute:
Or if it's stored in the application scope as an application attribute, just get it back as application attribute:
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.