如何使用 JSP 页面中 servlet 内声明的变量?
我在 servlet 中声明了一个 int
变量。
如何在JSP页面中使用它?
I have declared an int
variable in my servlet.
How can I use it in the JSP page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在将请求转发到 JSP 之前将其设置为请求属性。
然后您可以通过 JSP 中的 EL 以通常的方式访问它:
不过这是相当基本的。我建议花一些时间阅读适当的书籍/教程。
另请参阅:
Set it as a request attribute before forwarding the request to the JSP.
Then you can access it the usual way by EL in JSP:
This is rather basic though. I'd suggest to invest some time in going through the proper books/tutorials.
See also: