<?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:p="http://www.springframework.org/schema/p"

xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">


<!-- HandlerMapping설정 -->

<bean id="defaultHandlerMapping" class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"/>


<!--  어떤걸로 존재하는 페이지를 인지를 분석->이동-->

<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver" p:prefix="/" p:suffix=".jsp" p:viewClass="org.springframework.web.servlet.view.JstlView">

<!--요즘 은 이렇게 namespaces p태그를 써서 한문장으로 쓴다.-->

아래 3문장은 예전 방식이다 p태그를 사용하여 하나로 만든다.

//<property  name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>

//<property name="prefix" value="/"/><!--경로 -->

//<property name="suffix" value=".jsp"/><!-- 확장자 -->

</bean>


<!-- /hello.do --> <!-- hello.do라고 요청이 들어오면 uyc패키지에있는 HelloActionController로 간다. -->

<bean name="/hello.do" class="uyc.HelloActionController" />

</beans>

by 맑은소금 2014. 3. 13. 10:22