Spring - servlet-context.xml과 root-context.xml의 차이점

vector·2021년 9월 14일
0

Study

목록 보기
29/29

xml 파일은 모두 객체(Bean)에 대한 정의를 내림

1. servlet-contex.xml

servlet에서 보듯이 요청과 관련된 객체를 정의합니다.

url과 관련된 controller나, @(어노테이션), ViewResolver, Interceptor, MultipartResolver 등의 설정을 해줍니다.

2. root-contex.xml

servlet-context.xml 과는 반대로 view와 관련되지 않은 객체를 정의합니다.

따라서 Service, Repository(DAO), DB등 비즈니스 로직과 관련된 설정을 해줍니다.

출처 - https://thiago6.tistory.com/70

profile
개발 공부중인 학생 입니다😄

0개의 댓글