728x90
- DispatcherServlet: client의 요청을 최초로 받아서 다른 곳들에 넘기도록 처리함. 중요하지만, 실제로 많이 다루지는 않음.
- Model, View, Controller 정도를 많이 다룸 (MVC)
- 나머지 부분(HandlerMApping, HandlerAdapter)은 스프링 프레임워크에서 자동으로 다뤄짐
src/main/webapp은 web의 root라고 보면 됨.
<resources mapping=/resources/**" location="/resources/"/>는
servlet이 해당 경로는 가로채지 않도록 예외시키는 것
<resources mapping=/MyResources/**" location="/MyResources/"/>라고 만들면 해당 폴더도 가로채지 않음
12. 컨트롤러(Controller)
13. Form 데이터
728x90
'Dev > Web' 카테고리의 다른 글
[Spring] 스프링 기초 - ViewResolver 설정 (0) | 2019.10.25 |
---|---|
[Spring] 스프링 기초 - Controller 여러개 맵핑하기 (0) | 2019.10.25 |
[Spring] 스프링 기초 - 소개, DI, IoC 컨테이너 개념2 (0) | 2019.10.23 |
[Spring] 3. AOP-I (0) | 2019.10.18 |
[Spring] 2. 생명주기, 외부 파일을 이용한 설정 (0) | 2019.10.18 |