반응형

WebApplicationInitializer에서 dispatcherServlet 설정에 InitParameter옵션을 아래와 같이 해주면된다.


dispatcher.setInitParameter("throwExceptionIfNoHandlerFound", "true");


위와 같이 설정해두면, 404 에러에 대해서 org.springframework.web.servlet.NoHandlerFoundException를 던져주게 된다.

반응형
,