we cant Override Jsp Service method?Why?

Answers were Sorted based on User's Feedback



we cant Override Jsp Service method?Why?..

Answer / deepti

_jspService() method will be written by the container hence
any methods which are not to be overridden by the end user
are typically written starting with an '_'. This is the
reason why we don't override _jspService() method in any
JSP page.

Is This Answer Correct ?    51 Yes 22 No

we cant Override Jsp Service method?Why?..

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

we cant Override Jsp Service method?Why?..

Answer / baji

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

we cant Override Jsp Service method?Why?..

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

Post New Answer

More Servlets Interview Questions

What are different Authentication options available in Servlets.

0 Answers  


Differentiate between get and post?

0 Answers  


How to work with Chinese login page (internationalization).if he enters user name and password in chinese, how is it converted to English and validate in db? And in reverse it should display welcome message in Chinese,if user is valid

4 Answers   Bosch,


What is servlet container. how it works?

0 Answers  


difference between forward and sendredirect

6 Answers   Accenture,






how to make the IP address to .com

1 Answers   iGate,


Which java framework is most popular?

0 Answers  


What is the major difference between context parameter and context attribute?

0 Answers  


What is difference between jsp and servlet?

0 Answers  


What do you mean by a filter and how does it work?

0 Answers  


How does Cookies work in Servlets?

0 Answers  


What is servlet instance?

0 Answers  


Categories