在 JSP 中,无需显式声明即可使用会话、请求和响应对象中的哪一个?
我在 JSP 教程和测试之一中遇到过这个问题。
我们可以在表达式和脚本中使用这三个对象中的哪一个,而无需显式声明它们?
I have come across this question in one of the JSP tutorials and tests.
Which among these three objects can we use in expressions and scriplets without having to declare them explicitely?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们可以在 Jsp 中使用所有这些,而无需显式声明。
Jsp 隐式对象
We can use all of them in Jsp without declaring explicitly.
Jsp Implicit objects
它们被称为“隐式对象”,并且它们都在 Java EE 教程。为了供将来参考,以下是相关摘录:
另请参阅:
They're called Implicit Objects and they are all outlined in the Java EE tutorial. For future reference, here's an extract of relevance:
See also: