티스토리 뷰

일단 컨텍스트란? 스프링이 관리하는 빈이 담긴 컨테이너이다.

 

그럼 제일 먼저 web.xml에 대해 보자.

 

web.xml

설정을 위한 설정파일이다. 즉 최초로 WAS가 구동될때 각종 설정을 정의해준다.
여러 XMl파일을 인식하도록 각 파일을 가리킨다.
servlet-context.xml과 root-context.xml을 어디서 가져올건지 인식해준다.
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee https://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

	<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>/WEB-INF/spring/root-context.xml</param-value>
	</context-param>
	
	<!-- Creates the Spring Container shared by all Servlets and Filters -->
	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>

	<!-- Processes application requests -->
	<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>
		
	<servlet-mapping>
		<servlet-name>appServlet</servlet-name>
		<url-pattern>/</url-pattern>
	</servlet-mapping>

</web-app>

 

이런것들이 써있다. 뜯어보자면 <context-param> 태그에 있는 설정이 root-context와 관련된 것이고,

<servlet> 안에 있는 것들이 servlet-context 와 관련된 설정이다.

 

흐름을 보면 web.xml에서 ContextLoaderListener를 이용해 root-context를,

DispacherServlet을 이용하여 servlet-context를 생성한다.


root-context.xml

servlet-context.xml 과는 반대로 View와 관련되지 않은 객체를 정의한다. 따라서 Service, Repository(DAO), DB 등
비즈니스 로직과 관련된 설정을 해준다. 백엔드 설정파일임
  • web.xml 파일에서 가장 먼저 읽어들이는 설정 파일
  • 이 context에 등록되는 bean은 모든 context에서 사용되어 진다.(공유가 가능하다)
  • View와 관련없는 객체(Bean)을 설정 ex) Service, Repository ...
  • DB는 View와 관련이 없으므로, DB에 접속하기 위한 설정은 root-context.xml 에 설정
	<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
		<property name="driverClassName" value="net.sf.log4jdbc.sql.jdbcapi.DriverSpy"></property>
		<property name="url" value="jdbc:log4jdbc:mysql://127.0.0.1:3306/book_ex"></property>
		<property name="username" value="zerock"></property>
		<property name="password" value="zerock"></property>
	</bean>

	<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
		<property name="dataSource" ref="dataSource" />
		<property name="configLocation" value="classpath:/mybatis-config.xml"></property>
		<property name="mapperLocations" value="classpath:mappers/**/*Mapper.xml"></property>
	</bean>
	
	<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate" destroy-method="clearCache">
		<constructor-arg name="sqlSessionFactory" ref="sqlSessionFactory"></constructor-arg>
	</bean>
	
	<context:component-scan base-package="org.zerock.persistence"></context:component-scan>
	<context:component-scan base-package="org.zerock.service"></context:component-scan>	
	
	<aop:aspectj-autoproxy></aop:aspectj-autoproxy>

Servlet-context.xml

요청과 관련된 객체를 정의한다. url과 관련된 컨트롤러나 어노테이션, 뷰 리졸버 등의 요청을 해준다.
프론트엔드 설정파일
  • 이 context에 등록되는 bean은 servlet-container에만 사용되어진다.
  • web.xml에서 DispatcherServlet 등록 시 설정한 파일이다.
  • DispatcherServlet이 직접 사용하는 컨트롤러를 포함한 웹 관련 빈을 등록하는데 사용한다.
  • 웹 어플리케이션에서 클라이언트의 요청을 받기 위한 컨텍스트 설정이다.
	<!-- Enables the Spring MVC @Controller programming model -->
	<annotation-driven />

	<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
	<resources mapping="/resources/**" location="/resources/" />

	<!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
	<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<beans:property name="prefix" value="/WEB-INF/views/" />
		<beans:property name="suffix" value=".jsp" />
	</beans:bean>
	
	<context:component-scan base-package="com.itwillbs.controller" />

 

'Spring' 카테고리의 다른 글

[Spring] Maven과 Gradle의 개념 및 비교  (0) 2024.01.24
[Spring] Spring과 Spring Boot  (0) 2024.01.15