Firstly we will create a class in which there will be doGet() method which takes two objects as arguments, first is request object and the second one is of response.
To display the name of the server you are using use the method getServerName() of the ServletRequest interface. To display the server port number use the method getServerPort(). You can also use other methods of the ServletRequest interface like getProtocol() to display the protocol you are using and many more methods depending on your needs.
The code of the program is given below:
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class SnoopingServerServlet extends HttpServlet{
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
PrintWriter pw = response.getWriter();
pw.println("The server name is " + request.getServerName() + "
");
pw.println("The server port number is " + request.getServerPort()+ "
");
pw.println("The protocol is " + request.getProtocol()+ "
");
pw.println("The scheme used is " + request.getScheme());
}
}
web.xml file for this program:
The output of the program is given below: