top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Explain the architechure of a Servlet.?

+1 vote
198 views
Explain the architechure of a Servlet.?
posted Jan 30, 2015 by Deepan

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

The core abstraction that must be implemented by all servlets is the javax.servlet.Servlet interface. Each servlet must implement it either directly or indirectly, either by extending javax.servlet.GenericServlet or javax.servlet.http.HTTPServlet.

Finally, each servlet is able to serve multiple requests in parallel using multithreading.

SERVLET ARCHITECHURE

answer Feb 2, 2015 by Karthick.c
...