we cant Override Jsp Service method?Why?
Answers were Sorted based on User's Feedback
Answer / gunarathinam
My concern is as previous answer _jspServeice() is wriiten
by container and also in that method all the implicit
objects will be created except request and response. if you
overrirde that method you cant get those object. That is
the reason we cant overrirde service method in jsp.
| Is This Answer Correct ? | 44 Yes | 18 No |
The content what we are written in the JSP will go into
_jspService()method because we are implicitly implemented
it.if we again try to override explicitly, the JSP compiler
given error as " THE METHOD IS ALREADY IMPLEMENTED AND CAN'T
OVERRIDE" but in case of other two methods we are not
implementing it in the jsp.therefore the jsp compiler will
allow we can override jspInit() and jspDestroy().
Any method which are not to be overridden by the end
user are typically written starting with an '_'.
| Is This Answer Correct ? | 16 Yes | 4 No |
Answer / smriti
we cant Override Jsp Service method becoz container pepole
have responsbility for override _jspService() method and
implement all logic according to user given data
| Is This Answer Correct ? | 2 Yes | 5 No |
What are the uses of servlet
What are the differences between forward() method and sendredirect() methods?
How do you track a user session in servlets?
Describe the phases of servlet lifecycle?
What is the use of send redirect () method?
How to rectify errors in java servlet while compilation?
What are the objects involved when a servlet receives a call from client?
when the webcontainer creates ServeletConfig,ServletContext objects? befoure creating the Servlet object or not?
What do you mean by annotations in servlet?
What is a web container and what is its responsibility?
Name the servers that can be used to develope and deploy Servlets?
what is the difference between?when we write the code in following manner? class One extends httpservlet { } and class One extends genericservlet { }