-
-
-
-
-
-
-
-
Controller Functions
Describe the functions of Controller?
-
Can I just abort processing a JSP?
Yes. Because your JSP is just a servlet method, you can just put (whereever necessary) a < % return; % >
-
What information that the ServletResponse interface gives the servlet methods for replying to the client?
It Allows the servlet to set the content length and MIME type of the reply. Provides an output stream, ServletOutputStream and a Writer through which the servlet can send the reply data.
-
-
-
-
How to get one Servlet's Context Information in another Servlet?
Access or load the Servlet from the Servlet Context and access the Context Information
-
-
-
-
-
-
Servlets Interview Questions
Ans