嗨,我是 jsp(apache-tomcat)的新手,我正在 jsp 中做一个小项目,因为在捕获异常期间,我想在 jsp 中重定向一些页面,我写了这样的代码
try
{
//some code..
}
catch(Exception e)
{
System.out.println("error==>"+e);
response.sendRedirect("Servererror.html");
}
在错误或异常期间,我可以使用 System.out.println() 看到错误,但页面没有重定向
我的代码有什么问题还是我做错了什么...请帮助..