4
我是Spring MVC的新手。我捕獲了異常,我想重定向到error.jsp頁面並顯示異常消息(ex.getMessage())後捕獲異常的控制器。我不想使用Spring的異常處理程序,而是必須以編程方式重定向到error.jsp。從Spring MVC的控制器調用Jsp頁面
@RequestMapping(value = "http/exception", method = RequestMethod.GET)
public String exception2()
{
try{
generateException();
}catch(IndexOutOfBoundsException e){
handleException();
}
return "";
}
private void generateException(){
throw new IndexOutOfBoundsException();
}
private void handleException(){
// what should go here to redirect the page to error.jsp
}
感謝愛德華。你是對的。它應該不是字符串,這種方式將起作用。感謝您的答覆 – james01 2012-07-05 23:50:00