글
<?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>
'Spring' 카테고리의 다른 글
어노테이션 적용한 설정 (0) | 2014.03.20 |
---|---|
스프링에서 mybatis 연결 DB연동하기 (0) | 2014.03.19 |
스프링에서 ibatis 연결 게시판-환경설정(2) (0) | 2014.03.17 |
스프링에서 ibatis 연결 게시판 DB연동하기(1) (0) | 2014.03.17 |
스프링 웹 어플리케이션을 위한 ApplicationContext 설정(환경설정) (0) | 2014.03.13 |
RECENT COMMENT