@Controller
public class CentralizedExceptionController extends DefaultHandlerExceptionResolver {
@Override
protected ModelAndView handleNoSuchRequestHandlingMethod(NoSuchRequestHandlingMethodException ex, HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
System.out.println("working?!");
return new ModelAndView();
}
我在我的代碼中有這個,但是在404從未調用過的情況下。 (我沒有在我的web.xml中定義的錯誤頁面,我不想)handleNoSuchRequestHandling方法覆蓋不起作用
這不起作用。它只在將此方法放在創建404的相同類中時才起作用。 – 2012-03-09 08:17:37