1. /WEB-INF/spring/root-context.xml 파일 설정
Dynamic Web Project 만들기 2 에서 설정한 root-context.xml 파일에 내용을 추가한다.
/WEB-INF/spring/root-context.xml 파일에 추가
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd">
<mvc:annotation-driven />
<context:component-scan base-package="com.test.jeongmun.*"/>
</beans>
* context:component-scan
=> 특정 패키지 안의 클래스들을 스캔하여 Annotation을 확인 후 Spring Bean 으로 등록한다.
=> @Component, @Controller, @Service, @Repository 등 component 어노테이션들을 Bean 등록 한다.
2. /WEB-INF/spring/appServlet/dispatcher-servlet.xml 파일에 내용 추가
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd">
<bean id="handlerMapping" class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping">
<property name="order" value="1"></property>
</bean>
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/"></property>
<property name="suffix" value=".jsp"></property>
</bean>
</beans>
* handlerMapping
=> Dispatcher Servlet 이라는 Front Controller 가 URL 요청을 확인하여 HandlerMapping을 통해 적절한
Controller 에게 해당 요청을 전달한다.
* ViewResolver
=> Controller 가 요청에 맞게 데이터를 처리하고 ViewResolver를 통해 사용자에게 View를 보여준다.
=> prefix 를 통해 view의 경로를 설정한다.
=> suffix 를 통해 view 파일의 확장자를 설정한다.
3. Controller에 설정한 url로 접근
3-1. Tomcat Context path 확인
이클립스 기준 servers > Tomcat 버전 > server.xml 파일 확인
맨밑쪽에 <Context /> 태그 중 path 확인
기본적으로는 path가 프로젝트 이름으로 설정되어 있으나 본인은 "/" 로 변경했습니다.
3-2. URL 접근
Controller 의 RequestMapping value 값도 "/" 이기 때문에 port 까지만 적어서 접근하면 된다.
접근하면 test.jsp 파일에 적은 내용을 볼 수 있다.