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
答案 0 :(得分:1)
更改
String name = session.getAttribute("name").toString();
以强>
String name = (String)session.getAttribute("name");