Categories: Servlet

Difference between GenericServlet and HttpServlet

GenericServlet class implements Servlet, ServletConfig and Serializable interfaces. It provides the implementaion of all the methods of these interfaces except the service method. GenericServlet may be directly extended by a servlet, although it’s more common to extend a protocol-specific subclass such as HttpServlet.GenericServlet makes writing servlets easier. It provides simple versions of the lifecycle methods init and destroy and of the methods in the ServletConfig interface. GenericServlet also implements the log method, declared in the ServletContext interface.

GenericServlet class can handle any type of request so it is protocol-independent.

You may create a generic servlet by inheriting the GenericServlet class and providing the implementation of the service method.

 

Methods of GenericServlet class

There are many methods in GenericServlet class. They are as follows:

  • public void init(ServletConfig config) is used to initialize the servlet.
  • public abstract void service(ServletRequest request, ServletResponse response) provides service for the incoming request. It is invoked at each time when user requests for a servlet.
  • public void destroy() is invoked only once throughout the life cycle and indicates that servlet is being destroyed.
  • public ServletConfig getServletConfig() returns the object of ServletConfig.
  • public String getServletInfo() returns information about servlet such as writer, copyright, version etc.
  • public void init() it is a convenient method for the servlet programmers, now there is no need to call super.init(config)
  • public ServletContext getServletContext() returns the object of ServletContext.
  • public String getInitParameter(String name) returns the parameter value for the given parameter name.
  • public Enumeration getInitParameterNames() returns all the parameters defined in the web.xml file.
  • public String getServletName() returns the name of the servlet object.
  • public void log(String msg) writes the given message in the servlet log file.
  • public void log(String msg,Throwable t) writes the explanatory message in the servlet log file and a stack trace.

Difference between HttpServlet and GenericServlet

javax.servlet.GenericServlet

Signature: public abstract class GenericServlet extends java.lang.Object implements Servlet, ServletConfig, java.io.Serializable

  • GenericServlet defines a generic, protocol-independent servlet.
  • GenericServlet gives a blueprint and makes writing servlet easier.
  • GenericServlet provides simple versions of the lifecycle methods init and destroy and of the methods in the ServletConfig interface.
  • GenericServlet implements the log method, declared in the ServletContext interface.
  • To write a generic servlet, it is sufficient to override the abstract service method.

javax.servlet.http.HttpServlet

Signature: public abstract class HttpServlet extends GenericServlet implements java.io.Serializable

  • HttpServlet defines a HTTP protocol specific servlet.
  • HttpServlet gives a blueprint for Http servlet and makes writing them easier.
  • HttpServlet extends the GenericServlet and hence inherits the properties GenericServlet.

Servlet Example by inheriting the GenericServlet class-

Let’s see the simple example of servlet by inheriting the GenericServlet class.

import java.io.*;  
    import javax.servlet.*;  
      
    public class HelloServlet extends GenericServlet{  
    public void service(ServletRequest req,ServletResponse res)  
    throws IOException,ServletException{  
      
    res.setContentType("text/html");  
      
    PrintWriter out=res.getWriter();  
    out.print("<html><body>");  
    out.print("<b>hello generic servlet</b>");  
    out.print("</body></html>");  
      
    }  
    }  

 

<<Previous <<   || Index ||   >>Next >>

 

Previous
Next
Dinesh Rajput

Dinesh Rajput is the chief editor of a website Dineshonjava, a technical blog dedicated to the Spring and Java technologies. It has a series of articles related to Java technologies. Dinesh has been a Spring enthusiast since 2008 and is a Pivotal Certified Spring Professional, an author of a book Spring 5 Design Pattern, and a blogger. He has more than 10 years of experience with different aspects of Spring and Java design and development. His core expertise lies in the latest version of Spring Framework, Spring Boot, Spring Security, creating REST APIs, Microservice Architecture, Reactive Pattern, Spring AOP, Design Patterns, Struts, Hibernate, Web Services, Spring Batch, Cassandra, MongoDB, and Web Application Design and Architecture. He is currently working as a technology manager at a leading product and web development company. He worked as a developer and tech lead at the Bennett, Coleman & Co. Ltd and was the first developer in his previous company, Paytm. Dinesh is passionate about the latest Java technologies and loves to write technical blogs related to it. He is a very active member of the Java and Spring community on different forums. When it comes to the Spring Framework and Java, Dinesh tops the list!

Share
Published by
Dinesh Rajput

Recent Posts

Strategy Design Patterns using Lambda

Strategy Design Patterns We can easily create a strategy design pattern using lambda. To implement…

2 years ago

Decorator Pattern using Lambda

Decorator Pattern A decorator pattern allows a user to add new functionality to an existing…

2 years ago

Delegating pattern using lambda

Delegating pattern In software engineering, the delegation pattern is an object-oriented design pattern that allows…

2 years ago

Spring Vs Django- Know The Difference Between The Two

Technology has emerged a lot in the last decade, and now we have artificial intelligence;…

2 years ago

TOP 20 MongoDB INTERVIEW QUESTIONS 2022

Managing a database is becoming increasingly complex now due to the vast amount of data…

2 years ago

Scheduler @Scheduled Annotation Spring Boot

Overview In this article, we will explore Spring Scheduler how we could use it by…

2 years ago