Reputation: 116
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.
Upvotes: 0
Views: 872
Reputation: 403501
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
.
Upvotes: 4