如何使用 JSP 页面中 servlet 内声明的变量?

发布于 2025-01-02 09:32:34 字数 67 浏览 0 评论 0原文

我在 servlet 中声明了一个 int 变量。

如何在JSP页面中使用它?

I have declared an int variable in my servlet.

How can I use it in the JSP page?

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

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

发布评论

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

评论(1

放血 2025-01-09 09:32:34

在将请求转发到 JSP 之前将其设置为请求属性。

int someInt = 42;
request.setAttribute("someInt", someInt);
request.getRequestDispatcher("/WEB-INF/some.jsp").forward(request, response);

然后您可以通过 JSP 中的 EL 以通常的方式访问它:

<p>Some int is ${someInt}.</p>

不过这是相当基本的。我建议花一些时间阅读适当的书籍/教程。

另请参阅:

Set it as a request attribute before forwarding the request to the JSP.

int someInt = 42;
request.setAttribute("someInt", someInt);
request.getRequestDispatcher("/WEB-INF/some.jsp").forward(request, response);

Then you can access it the usual way by EL in JSP:

<p>Some int is ${someInt}.</p>

This is rather basic though. I'd suggest to invest some time in going through the proper books/tutorials.

See also:

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