PsFrameworkServlet class overrides?
-
doGet()
-
doPost()
-
a & b
-
processRequest()
C
Correct answer
Explanation
Framework servlets typically handle multiple HTTP methods. PsFrameworkServlet overrides both doGet() and doPost() methods to provide consistent request processing and routing across different HTTP request types within the framework's architecture. Option D (processRequest) is likely an internal method, not the standard HttpServlet override.