Spring_web.xml 해석

JW__1.7·2022년 11월 2일
0

Spring 공부일지

목록 보기
3/9

web.xml에 들어가면 SpringContainer에 대한 정보와 별명 등을 지정해줄 수 있는 곳이다.

<?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>

  • Spring Contaimer는 Bean을 만들어 두는 곳이다.
    Spring Bean Configration 파일과 같은 역할이다.
  • <param-value> 태그에 /WEB-INF/spring/root-context.xml을 지정해서 root-context.xml 파일에 <bean> 태그를 추가하면 Bean이 만들어진다.
	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>/WEB-INF/spring/root-context.xml</param-value>
	</context-param>

Servlets 과 Filters 에서 공유되는 Spring Container를 만든다.

	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>

  • <servlet-name> : servlet을 부를 별칭을 정해주는 곳이다.
    서블릿을 appServlet으로 부르겠다.
  • <servlet-class> : 실제 서블릿은 DispatcherServlet이다.
  • <param-value> : DispatcherServlet은 servlet-context.xml의 내용을 읽어서 동작한다.
	<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> : @WebServlet 에너테이션을 의미한다.
    어떤 서블릿이 어떤 매핑에서 동작하는지 정의하는 것을 의미한다.
  • <servlet-name> : 서블릿의 이름을 의미한다.
  • <url-pattern> : 서블릿의 경로를 의미한다.
  • appServlet의 동작은 매핑 /(ContextPath 경로)에서 이루어진다. ( / == app02 )
  • 프로젝트의 ContextPath는 com.gdu.app02 중 app02 이다.
  • DispatcherServlet은 http://localhost:9090/app02 경로(프로젝트=애플리케이션의 시작 경로)에서 동작한다.
	<servlet-mapping>
		<servlet-name>appServlet</servlet-name>
		<url-pattern>/</url-pattern>
	</servlet-mapping>  

Project의 시작경로

Project - properties - Web Project Setting

0개의 댓글