<?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 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
classpath:/common.xml
</param-value>
//한개 이상의 설정 파일을 사용하거나 이름이 [이름]-servlet.xml형식이 아닌 파일을 사용해야 한다면 contextConfigLocation 초기화 파라미터로 설정 파일 목록을 지정하면된다.
//각 설정 파일의 경로는 웹 어플리케이션 루트디렉터리를 기준으로 하며
file: 이나 classpath: 접두어를 이용해서 로컬 파일이나 클래스패스에 위치한 파일을 사용할 수 있다.
</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>
//@Configuration 클래스를 이용해서 설정 정보를 작성했다면, 다음과같이 해야된다.
'JAVA > Spring 4.0' 카테고리의 다른 글
Spring4.0 @RequestMapping 메소드 (0) | 2015.09.16 |
---|---|
Spring4.0 MVC 기본 동작시키기 (0) | 2015.09.16 |
Spring4.0 스프링 MVC의 주요 구성요소 (0) | 2015.09.16 |
Spring4.0 web.xml 캐릭터 인코딩 필터 설정 (0) | 2015.09.16 |
Spring4.0 servlet-context.xml (0) | 2015.09.16 |