반응형 서블릿예외처리-인터셉터1 [Spring Boot] : 인터셉터 예외 처리 인터셉터의 중복 호출을 제거한다. @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { String requestURI = request.getRequestURI(); String uuid = UUID.randomUUID().toString(); request.setAttribute(LOG_ID, uuid); log.info("REQUEST [{}][{}][{}][{}]", uuid, request.getDispatcherType(), requestURI, handler); return true; } 필터는 DispatcherTyp.. 2022. 2. 25. 이전 1 다음 반응형