root-context.xml
root-context.xml은 DispatcherServlet보다 상위 레벨의 전역 설정을 작성하는 파일이다.
파일 전체 내용 보기
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd">
<!-- Root Context: defines shared resources visible to all other web components -->
</beans>파일 상세 보기
xml 헤더
<?xml version="1.0" encoding="UTF-8"?>기본 영역 설정
설정 파일 모듈 관리



Last updated