Newsletter |
What is servlet? An Introduction to Java Servlets
The basic aim of servlet is to develop web applications. Before servlets came into picture there was a specification called CGI. Servlets specification developed by SUN and released to the industry. Lot of server vendors came forward for implementing these specifications of servlets. Servlets are nothing but set of rules given by SUN in the form of Interfaces. The server vendors have developed their own classes by implementing the interfaces developed by SUN.
The collection of classes developed by server vendors and Interfaces developed by SUN are known as Servlet-API.
What is servlet
A servlet is a server side platform independent, dynamic and multithread java program, which runs in the context of server for extending the functionality of server. When multiple users make a request to the same servlet then all requests will be processed by the container by creating multiple threads for the same servlet. In order to deal with these servlet programming, we must import
javax.servlet.*; javax.servlet.http.*;
into our java program.
- javax.servlet.Servlet is one of pre-defined top most interface, which is containing life cycle methods[init(), service(), destroy() i will describe about these methods later] for servlet.
- javax.servlet.GenericServlet is one of the predefined abstract class which is implementing javax.servlet.Servlet interface, this GenericServlet class is used for developing protocol independent applications [ But in real time we will use protocol dependent applications only, so GenericServlet won’t be appeared in real time ]
- Javax.servlet.http.HttpServlet is sub class of GenericServlet used for developing protocol dependent application [ HTTP protocol ]
Consider Myserlet.java is our own class always recommended to extends HttpServlet servlet, as our current internet world is supporting HTTP protocol right 🙂 In real time, we will use HttpServlet only not GenericServlet remember.
You Might Also Like
::. About the Author .:: | ||
pls can u explain how can read excel sheets in servlets?
Can u let me know how to create servelt object by using class.forName()
Awesum tutorial!! m loving it!!!
what is the purpose of init()method already we have life cycle method init(-)?
what is listener class in servlet?
wow!! bst tutorial…
Friendly Explanation .
Friendly explanation
GenericServlet Class not concrete class it is a abstract class.this class service () method is abstract
Goood For Teaching The Java Knowledge
Thanks for sharing such an informative blog. This blog gives information about what is servlet with examples. Great blog. This blog is really helpful to many people.