JasperException上的重定向页面

时间:2012-06-21 01:03:41

标签: java jsp exception servlets redirect

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

1 个答案:

答案 0 :(得分:1)

更改

String name = session.getAttribute("name").toString();

String name = (String)session.getAttribute("name");