Spring MVC 전체 흐름 파악하기
https://www.slideshare.net/hanmomhanda/spring-mvc-fullflow
(임시저장)
web.xml에 DispatcherServlet 설정돼있다.
1 2 3 4 5 6 7 8 9 | <servlet> <servlet-name>appServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> | cs |
DispatcherServlet이 참조하는 servlet-context.xml에 Controller 를 bean으로 등록
1 2 3 4 5 | </beans:bean> <!-- 스프링 빈을 태그로 등록하지 않고 자동으로 검색(auto scan) --> <context:component-scan base-package="com.example.spring01" /> </beans:beans> | cs |
https://j2yes.tistory.com/entry/ApplicationContext
'Spring > study' 카테고리의 다른 글
spring 5강 Oracle과 mybatis 연동 실습(회원 목록,등록,수정,삭제) (0) | 2019.06.05 |
---|---|
Spring Framework (Legacy) spring01 프로젝트 뜯어보기 (0) | 2019.06.03 |
MVC 패턴에서 Service Model의 역할 (0) | 2019.05.31 |
스프링 프레임워크 입문 -PSA(Portable Service Abstraction) (0) | 2019.05.31 |
스프링 프레임워크 입문 -AOP(Aspect Oriented Programming) (0) | 2019.05.31 |