What is a servlet?
2021-03-04
What is a servlet? A servelt is a simple Java class working on the request-response model. Various interface and classes to handle common HTTP-specific service are defined in the java servelt API. Each servelt implements the servelt interface by providing implementation of the life cycle methods, init(), service(), and destroy().Continue Reading