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
- type eraser
- 벌크연산
- CORS
- #@Transacional
- SPOF
- RequestMappingHandlerMapping
- demand paging
- wrapper class
- IllegalStateException
- pessimistic lock
- tracking-modes
- HandlerMethod
- assertJ
- generic type
- CQS
- optimistic lock
- Transaction
- Java
- 단어변환
- 프로그래머스
- NestJS 요청흐름
- TDZ
- COPYOFRANGE
- API
- Generic method
- 역정규화
- propagation
- ExceptionResolver
- cross-cutting concerns
- hoisting
Archives
- Today
- Total
목록Tech/NestJS (1)
jingyulog
Spring MVC와 NestJS의 HTTP 요청 흐름 차이
Spring MVC 전체 요청 처리 흐름클라이언트 요청DispatcherServiet : Spring MVC의 핵심 프론트 컨트롤러로 모든 요청을 받는다.HandlerMapping : URL, HTTP 메서드 기반으로 적절한 컨트롤러(Handler)를 찾는다.HandlerInterceptor (preHandle) : 요청 전에 동작하는 인터셉터로 인증, 로깅, 권한 확인 등에 사용된다. 이때, false 반환시에는 처리를 중단한다.HandlerMethodArgumentResolver (요청 -> 컨트롤러 파라미터 바인딩) : 컨트롤러 메서드 파라미터에 값을 바인딩해준다. 예를들어, @RequestParam, @RequestBody, @CurrentUser 등이 있다.Controller (핸들러 메서드 실..
Tech/NestJS
2025. 10. 4. 15:29
