일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 자바
- Proxy
- jpa
- 인프런
- Thymeleaf
- SpringBoot
- springdatajpa
- 스프링 핵심 원리
- http
- JPQL
- JDBC
- db
- Exception
- pointcut
- 스프링
- Greedy
- AOP
- QueryDSL
- kotlin
- 백준
- 그리디
- Android
- Servlet
- 김영한
- Spring Boot
- 스프링 핵심 기능
- java
- spring
- transaction
- 알고리즘
- Today
- Total
목록오류처리 (2)
개발자되기 프로젝트
API예외 처리는 SpringBoot의 기본 오류 처리 방식을 사용할 수 있음. 1. BasicErrorController SpringBoot가 제공하는 기본 ErrorController @Controller @RequestMapping("${server.error.path:${error.path:/error}}") public class BasicErrorController extends AbstractErrorController { @RequestMapping(produces = MediaType.TEXT_HTML_VALUE) public ModelAndView errorHtml(HttpServletRequest request, HttpServletResponse response) {} @Reques..
인터셉터 중복 호출 제거 1. LogInterceptor @Slf4j public class LogInterceptor implements HandlerInterceptor { public static final String LOG_ID = "logId"; @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); l..