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
- 우분투에war배포
- DB생성
- gradle
- SpringBoot
- offset
- NullPointerException
- MySQL시작하기
- SQL
- springMVC
- windows10
- Postman
- VUE
- spring
- frontend
- appleM1
- MySQL
- Java
- wappalyzer
- Seek_Keyset
- intellij
- MYSQL에러
- pagination
- restful api
- 스프링에러
- 이클립스
- minikube
- String
- K8S
- Lombok
- CloutNative
Archives
- Today
- Total
목록spring (1)
미운 오리 새끼의 우아한 개발자되기
[Spring MVC] Spring MVC 작동 원리
1. Client가 Server에게 요청(Request)을 보내면 Dispatcher Servlet이 이 요청을 가로챔 2. Dispatcher Sevlet은 Handler Mapping에게 어떤 컨트롤러로 이 요청을 보내야 할 지 물어봄 3. 매핑된 메서드가 있는 Controller가 있다면 Handler Mapping이 이를 Dispatcher Servlet에게 넘김 4. 해당 Controller는 해당 요청을 처리할 비즈니스 로직이 담긴 Service를 주입(Dependency Injection) 받아 비즈니스 로직을 Service에게 위임 -> Service가 비즈니스 로직을 처리함(DB접근 등) -> 모든 비즈니스 로직을 끝낸 Service는 결과물을 Controller에게 줌. 5. 결과물을 ..
Spring & Spring Boot/Spring
2020. 9. 7. 14:39