jsp页面是什么类?
jsp页面是什么类?我想将页面对象传递给页面上带有“this”指针的类。我该怎么做? 谢谢。
What is the class of jsp pages? I want to pass an object of page to a class whith "this" pointer on the page. How can I do this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一旦被编译为 servlet,JSP 就会实现 javax.servlet.jsp.JspPage 接口。
不过,实际的基类取决于 servlet 容器。例如,Tomcat 6 生成扩展基类 org.apache.jasper.runtime.HttpJspBase 的已编译 JSP。
Once they've been compiled to servlets, JSPs implement the interface
javax.servlet.jsp.JspPage
.The actual base class depends on the servlet container, though. For example, Tomcat 6 genrated compiled JSPs extending the base class
org.apache.jasper.runtime.HttpJspBase
.