Why is _jspService() method starting with an '_' while other life cycle methods do not?

Q

Why is _jspService() method starting with an '_' while other life cycle methods do not?

✍: Guest

A

_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.

2013-08-14, 2644👍, 0💬