Home > Java > javaTutorial > body text

Servlet Methods

王林
Release: 2024-08-30 16:23:42
Original
768 people have browsed it

The servlet method is an essential part of the servlet life cycle to create, operate, and maintain web applications as per user requirements. The servlet method creates, initializes, handles, and closes the web application’s operation cycle. The servlet methods are important features used to develop operational applications and invoke the web container to operate the servlet life cycle. The servlet provides multiple methods to send requests, get a response from the server, and operate operations as required.

ADVERTISEMENT Popular Course in this category JAVA SERVLET - Specialization | 18 Course Series | 6 Mock Tests

Start Your Free Software Development Course

Web development, programming languages, Software testing & others

Overview of Servlet Methods

The server-side component, a servlet, is a potent tool for creating server-side apps. Building Web-based applications with Servlets is a component-based, platform-independent solution that does not have the performance restrictions of CGI programs. Web developers may quickly and effectively create server-side applications using servlets, and these apps can operate on any Web server that supports servlets. Inside the Java virtual computer, Servlets can function. The browser is not tested for compatibility while the servlet runs on the server.

Servlets have access to the Java API family, including the JDBC API for enterprise database access. Several Java classes in the javax.servlet and javax.servlet.http packages employ servlets HTTP protocols. Additionally, servlets have access to a library of HTTP-specific calls and can take advantage of all the Java language’s mature features, such as portability, performance, reuse, and crash protection.

Different Servlet Methods

The generic servlet uses and operates the following five methods in the operational servlet life cycle:

1. Servlet init() Method

The servlet container only calls the init() method once in a servlet operation. This inits() method informs the servlet that it puts into service.

One of the following conditions must use with the init method:;[p ‘mi;/.

  • The ServletException throws with the condition.
  • The web server specifies a fixed time limit.

Syntax:

public void init(ServletConfig configs) throws ServletException{
//initialize servlet object and parameters.
}
Copy after login

The ServletConfig object that holds the initialization functions and basic servlet settings are passed to the init() method, which throws a ServletException if an error has occurred.

2. Servlet service() Method

The servlet container calls the service() method once the servlet begins receiving requests so it may react. The Servlet container also passes ServletResponse to the database and display page.

Two objects which are javax.servlet.ServletRequest and javax.servlet.ServletResponse help the servlet process to the client request.

Syntax:

public void service(ServletRequest requests, ServletResponse responses) throws ServletException{
//Pass servlet object and parameters.
}
Copy after login

3. Servlet getServletConfig() Method

The Servlet Container creates a servlet method called ServletConfig(). It is provided to the servlet during the initialization of the object life cycle. It contains some initial parameters or configuration data. It is recommended to save servlet-specific information in web.xml.

Syntax:

public String getServletConfig(){
// Add servlet code.
}
Copy after login

4. Servlet getServletInfo() Method

A servlet method displays or returns servlet information from the container. This information is available on the servlet container for operation.

Syntax:

public String getServletInfo(){
// Add servlet code.
}
Copy after login

5. Servlet destroy() Method

The servlet destroys method uses to close the servlet life cycle and connections. It ends the servlet functionality after displaying the required output.

Syntax:

public void destroy(){
// End servlet connections.
}
Copy after login

Examples of Servlet Methods

The following examples show servlet different methods and their output as per operations:

Example #1

The Hello World servlet methods example and its output.

HelloOutput.java:

Code:

import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.Servlet;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
public class HelloOutput implements Servlet {
private static final long serialVersionUID = 1L;
public HelloOutput() {
}
ServletConfig configurates=null;
@Override
public void init(ServletConfig configurates) throws ServletException {
this.configurates = configurates;
System.out.println("Servlet Object initializes here.");
}
@Override
public void destroy() {
System.out.println("Close connection and End process here.");
}
@Override
public ServletConfig getServletConfig() {
return configurates;
}
@Override
public String getServletInfo() {
return "Educba Website";
}
@Override
public void service(ServletRequest request, ServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter printout = response.getWriter();
printout.println("<h2>Hello World First Example using " +
"Servlet Methods.</h2>");
printout.close();
}
}
Copy after login

web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<servlet>
<servlet-name> HelloOutput </servlet-name>
<servlet-class>
com.educba.learn.HelloOutput
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name> HelloOutput </servlet-name>
<url-pattern> /HelloOutput </url-pattern>
</servlet-mapping>
</web-app>
Copy after login
Copy after login
Copy after login

Output:

Servlet Methods

Example #2

The servlet methods example with getServletInfo() method output.

HelloOutput.java:

Code:

import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.Servlet;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
public class HelloOutput implements Servlet {
private static final long serialVersionUID = 1L;
public HelloOutput() {
}
ServletConfig configurates=null;
@Override
public void init(ServletConfig configurates) throws ServletException {
this.configurates = configurates;
System.out.println("Servlet Object initializes here.");
}
@Override
public void destroy() {
System.out.println("Close connection and End process here.");
}
@Override
public ServletConfig getServletConfig() {
return configurates;
}
@Override
public String getServletInfo() {
return "Educba Website";
}
@Override
public void service(ServletRequest requests, ServletResponse responses)
throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter printout = response.getWriter();
printout.println("<h2>Hello World First Example using " + getServletInfo() +
".</h2>");
printout.close();
}
}
Copy after login

web.xml:

Code:

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<servlet>
<servlet-name> HelloOutput </servlet-name>
<servlet-class>
com.educba.learn.HelloOutput
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name> HelloOutput </servlet-name>
<url-pattern> /HelloOutput </url-pattern>
</servlet-mapping>
</web-app>
Copy after login
Copy after login
Copy after login

Output:

Servlet Methods

Example #3

The servlet methods example with html element and its output.

HelloOutput.java:

Code:

import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.Servlet;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
public class HelloOutput implements Servlet {
private static final long serialVersionUID = 1L;
public HelloOutput() {
}
ServletConfig configurates=null;
@Override
public void init(ServletConfig configurates) throws ServletException {
this.configurates = configurates;
System.out.println("Servlet Object initializes here.");
}
@Override
public void destroy() {
System.out.println("Close connection and End process here.");
}
@Override
public ServletConfig getServletConfig() {
return configurates;
}
@Override
public String getServletInfo() {
return "Educba Website";
}
@Override
public void service(ServletRequest requests, ServletResponse responses)
throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter printout = response.getWriter();
printout.print("<html><body>");
printout.println("<h5> Simple servlet method example </h5>");
printout.println("<p> Simple servlet method example </p>");
printout.print("</body></html>");
}
}
Copy after login

web.xml:

Code:

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<servlet>
<servlet-name> HelloOutput </servlet-name>
<servlet-class>
com.educba.learn.HelloOutput
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name> HelloOutput </servlet-name>
<url-pattern> /HelloOutput </url-pattern>
</servlet-mapping>
</web-app>
Copy after login
Copy after login
Copy after login

Output:

Servlet Methods

Conclusion

The servlet method plays an important role in web application functionality. It shows and defines about server and displays the output.

The above is the detailed content of Servlet Methods. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!