TODAY JAVA SCHOOL

In java school, programming, design, computer general knowledge, web application, software, web services, social media, digital marketing, oops, concept of programming language, oops feature, console media, graphics medium, first programming, c, c ++ , Java, PHP, SQL, MySQL, HTML, HTML_5, J_query, JavaScript, Bootstrap, Framework, images with logos, examples, shared and explained.

https://www.amazon.in/b?node=26373545031&linkCode=ll2&tag=1234567801cdb-21&linkId=3b9882431b00409b44141e0344b35a15&language=en_IN&ref_=as_li_ss_tl

Breaking

Thursday 16 April 2020

Introduction Of Servlet In Java | Java Servlet Example | Java Servlet In Hindi

Introduction Of Servlet

Servlet technology is used to create a web application (resides at server side and generates a dynamic web page).
Servlet technology is robust and scalable because of java language. Before Servlet, CGI (Common Gateway Interface) scripting language was common as a server-side programming language. However, there were many disadvantages to this technology. We have discussed these disadvantages below.

There are many interfaces and classes in the Servlet API such as Servlet, GenericServlet, HttpServlet, ServletRequest, ServletResponse, etc.

example of servlet

Fig: Introduction Of servlet

What is a Servlet?

Servlet can be described in many ways, depending on the context.
  • Servlet is a technology which is used to create a web application.
  • Servlet is an API that provides many interfaces and classes including documentation.
  • Servlet is an interface that must be implemented for creating any Servlet.
  • Servlet is a class that extends the capabilities of the servers and responds to the incoming requests. It can respond to any requests.
  • Servlet is a web component that is deployed on the server to create a dynamic web page.

What is a web application?

A web application is an application accessible from the web. A web application is composed of web components like Servlet, JSP, Filter, etc. and other elements such as HTML, CSS, and JavaScript. The web components typically execute in Web Server and respond to the HTTP request.


CGI (Common Gateway Interface)

CGI technology enables the web server to call an external program and pass HTTP request information to the external program to process the request. For each request, it starts a new process.


Disadvantages of CGI

There are many problems in CGI technology:
1.    If the number of clients increases, it takes more time for sending the response.
2.    For each request, it starts a process, and the web server is limited to start processes.
3.    It uses platform dependent language e.g. CC++perl.

 
advantage of servlet


Fig: CGI  


Advantages of Servlet

 The advantages of Servlet are as follows:

1.    Better performance: because it creates a thread for each request, not process.

2.    Portability: because it uses Java language.

3.    Robust: JVM manages Servlets, so we don't need to worry about the memory leak, garbage collection, etc.

4.    Secure: because it uses java language.

No comments:

Post a Comment