How should servlet developers handle the HttpServlet’s service() method when extending HttpServlet?
A.
They should override the service() method in most cases.
B.
They should call the service() method from doGet() or doPost()
C.
They should call the service() method from the init() method.
D.
They should override at least one doXXX() method (such as doPost()).