본문 바로가기

개발/BACK

[스프링 프레임워크] web.xml 설정 방법

728x90

Spring Framework를 이용해 웹 프로젝트를 개발할 때, 가장 어려운 부분이 설정일 것이다.

 

먼저 web.xml의 정의는 Web Application의 Deployment Descriptor(환경파일 : 배포서술자, DD파일)이다.

모든 웹 프로젝트들은 web.xml파일을 가지고 있다.

보는 바와 같이 src / main /webapp / WEB_INF 에 존재한다.

 

해당 web.xml 파일을 열어보게되면 아래에 나오는 소스코드에서

한글설정부분을 제외하고는 기본적으로 동일하게 구성된다.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<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 http://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>
	<!-- 한글설정 -->
	<filter>
		<filter-name>encodingFilter</filter-name>
		<filter-class>
			org.springframework.web.filter.CharacterEncodingFilter
		</filter-class>
		<init-param>
			<param-name>encoding</param-name>
			<param-value>UTF-8</param-value>
		</init-param>
		<init-param>
			<param-name>forceEncoding</param-name>
			<param-value>true</param-value>
		</init-param>
	</filter>
	<filter-mapping>
		<filter-name>encodingFilter</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>
	<!-- 한글설정 END -->
</web-app>

<web-app> :

web.xml 파일의 루트 엘리먼트, 웹어플리케이션의 설정은 해당 태그 안에 있어야 된다.

                  해당 태그는 프로젝트 생성 후, web.xml 파일을 열어보면 자동 설정되어 있다.

 

 <listener-class> 태그 내부의 ContextContextLoaderListener :

하단에 있는 param-value 값의 스프링 설정 파일을 

  불러온다. 

 

 

<servlet></servlet> :

DispatcherServlet 클래스를 초기화하여 servlet context 를 생성한다.

<param-value>의 경로로 bean 설정파일의 위치를 넘겨줌

 

<servlet-mapping> 태그는 <url-pattern>태그안에 있는 값으로 넘어온 호출은 모두 <servlet-name>에 지정된

이름의 servlet을 호출한다. 해당 예시는 루트(/)경로로 호출된 웹 요청(localhost:8080/)이 있을 때는 servlet-context.xml

이 모든 요청을 받게되고, Controller를 찾아 들어가게 된다.

 

이상 기본적으로 적힌 web.xml 설정파일에 대한 분석이었다. 

728x90