InterviewSolution
Saved Bookmarks
| 1. |
Why Is _jspservice() Method Starting With An '_' While Other Life Cycle Methods Do Not? |
|
Answer» _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. _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. |
|