Main.jsp
String name = session.getAttribute("name").toString();
if (name == "" || name == null) {
response.sendRedirect("index.jsp");
}
ユーザーがログインしてこのページにアクセスする場合、メインページに問題はありません。しかし、ユーザーがログインせずにページにアクセスしようとすると、ページをindex.jspにリダイレクトしたいのですが、
org.apache.jasper.JasperException: An exception occurred processing JSP page /main.jsp
index.jspにリダイレクトする方法