i want to redirect all 404 errors to a error page, i have created a controllerAdvice but my method does not catch 404 error, i am using spring 3.3 throwExceptionIfNoHandlerFound to true does not work
@ExceptionHandler(NoSuchRequestHandlingMethodException.class)
public ModelAndView handleNoSuchRequestHandlingMethod(final NoSuchRequestHandlingMethodException ex)
{
final ModelAndView mav = new ModelAndView(ERRORJSP);
return mav;
}