9 lines
336 B
Text
9 lines
336 B
Text
<%--
|
|
Views should be stored under the WEB-INF folder so that
|
|
they are not accessible except through controller process.
|
|
|
|
This JSP is here to provide a redirect to the dispatcher
|
|
servlet but should be the only JSP outside of WEB-INF.
|
|
--%>
|
|
<%@page contentType="text/html" pageEncoding="UTF-8"%>
|
|
<% response.sendRedirect("index.htm"); %>
|