Can we override the jspService method?

Can we override the jspService method in jsp file?
[57 byte] By [shinde_yogesha] at [2007-11-27 5:03:59]
# 1
Please refer API documentation b4 posting any generalized queries. http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/jsp/JspPage.htmlyou find more insight information from below links too... http://jguru.com/faq/view.jsp?EID=8824
RahulSharnaa at 2007-7-12 10:22:12 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

You can. But the use depends on the webcontainer used. For every kind of webcontainer you likely have to rewrite the stuff.

In case of Tomcat, you simply have to extend the [url=http://tomcat.apache.org/tomcat-4.1-doc/jasper/docs/api/org/apache/jasper/runtime/HttpJspBase.html]HttpJspBase [/url] and implement accordingly.

BalusCa at 2007-7-12 10:22:12 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...