Java Servlet Programing Laungage

Java Servlet Projects

Servlet Project 3

adplus-dvertising
Java Servlet :Example of sendRedirect
Previous Home Next

This example shows you how to redirect the server to the other server.This method is used to forward the request to the other url.

index.html

<html>
	<head>
	</head>
	<body>
		<a href="welcomeServlet">Send URL Other Server</a>
	</body>
</html>

web.xml

<web-app>
	<servlet>
		<servlet-name>s1</servlet-name>
		<servlet-class>WelcomeServlet</servlet-class>
	</servlet>
	<servlet-mapping>
		<servlet-name>s1</servlet-name>
		<url-pattern>welcomeServlet</url-pattern>
	</servlet-mapping>
</web-app>

WelcomeServlet.java

import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;

public class WelcomeServlet extends HttpServlet
{
public void doGet(HttpServletRequest request,
  HttpServletResponse response)throws ServletException,IOException
{
response.sendRedirect("http://www.facebook.com/");
}
}
Previous Home Next