Is it possible to redirect a user automatically to a second jsp page as soon as the home page loads?
With core JSTL libraries loaded <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
you can use:
<c:redirect url="/home.html"/>
There is an example of such a thing: JSP - Page Redirecting
Simplest is using sendRedirect
:
public void response.sendRedirect(String location)
throws IOException