Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Proxy
- Servlet
- Spring Boot
- QueryDSL
- 백준
- Exception
- JPQL
- SpringBoot
- db
- jpa
- 인프런
- java
- 스프링 핵심 원리
- 알고리즘
- transaction
- 스프링
- spring
- Thymeleaf
- 스프링 핵심 기능
- 자바
- Android
- JDBC
- 김영한
- kotlin
- Greedy
- 그리디
- http
- AOP
- pointcut
- springdatajpa
Archives
- Today
- Total
목록오류처리 흐름 (1)
개발자되기 프로젝트
[예외] Servlet 예외처리 - interceptor
인터셉터 중복 호출 제거 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..
인프런/[인프런] 스프링 MVC 2
2021. 9. 27. 23:12