REST 방식

  => http://localhost/spring303/info

  => http://localhost/bbs/notice/10

기존의 경우 http://localhost/spring303/info.sp?name=snoopy&age=100 이런식으로 파라미터를 이용해서 정보를 전달 받았지만, 이제는 URI에 필요한 정보를 포함해서 URL을 구성

 

■ Spring 3 버전에 추가된 URI 템플릿 기능을 이용하면 REST 방식의 URL 매칭을 쉽게 처리 할 수 있음.

  ◆ 사용방법

    ● @RequestMapping 어노테이션의 값으로 {템플릿변수}를 사용

    @PathVariable 어노테이션을 이용해서 {템플릿변수}와 동일한 이름을 갖는 파라미터를 추가

 

■ Ant 경로 패턴 : ?, *, ** 를 이용하여 경로 패턴을 명시하고 있으며, BeanNameUrlHandlerMapping과 SimpleUrlHandlerMapping은 Ant 경로 패턴을 이용하여 요청 URL과 컨트롤러의 매칭을 처리

● ? - 1개의 문자와 매칭

● * - 0개 이상의 문자와 매칭

● ** - 0개 이상의 디렉토리와 매칭

 

 

ParamController.java

package sp.mvc.controller;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;

 

@Controller
public class ParamController {

 

 @RequestMapping("info/name/{userName}/age/{age}")
 public void uriTempTest(@PathVariable("userName") String name, @PathVariable int age, Model model){
  System.out.println("----- ParamController.uriTempTest() -----");
  System.out.println("name : " + name);
  System.out.println("age : " + age);
  
  model.addAttribute("name", name);
  model.addAttribute("age", new Integer(age));
 } 

 

 @RequestMapping("/info/*/item/{item}")
 public void antStyleTest(@PathVariable String item){
  System.out.println("----- ParamController.antStyleTest() -----");
  System.out.println("item : " + item);
 }

}

 

main_config.xml

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
 xmlns:context="http://www.springframework.org/schema/context"
 xmlns:p="http://www.springframework.org/schema/p"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context-3.0.xsd">

 

 <context:annotation-config/>
 <context:component-scan base-package="sp.mvc.controller"/>

 

 <!-- 전체 경로 사용 -->
 <bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping" p:alwaysUseFullPath="true"/>
 <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" p:alwaysUseFullPath="true"/> 

 
  
 <!-- ViewResolver 설정 -->
 <bean id="internalResource" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  <property name="prefix" value="jsp/"></property>
  <property name="suffix" value=".jsp"></property>
 </bean>


 <!-- 각종 bean 설정 -->

 
</beans>

 

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns="http://java.sun.com/xml/ns/javaee"
 xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
 
  <display-name>spring303</display-name>

 <filter>
  <filter-name>characterEncodingFilter</filter-name>
  <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
  <init-param>
   <param-name>encoding</param-name>
   <param-value>UTF-8</param-value>
  </init-param>
 </filter>

 <filter-mapping>
  <filter-name>characterEncodingFilter</filter-name>
  <url-pattern>/*</url-pattern>
 </filter-mapping>


 <!-- 공통 빈 설정
 <context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>/WEB-INF/applicationContext.xml</param-value>
 </context-param>
  
 <listener>
  <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
 </listener>
 -->
 
 <servlet>
  <servlet-name>spring303</servlet-name>
  <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  <init-param>
   <param-name>contextConfigLocation</param-name>
   <param-value>
    /WEB-INF/main_config.xml
   </param-value>
  </init-param>
  <load-on-startup>1</load-on-startup>
 </servlet>
 
 <servlet-mapping>
  <servlet-name>spring303</servlet-name>
  <url-pattern>*.sp</url-pattern>
  <url-pattern>/info/*</url-pattern>
 </servlet-mapping>


</web-app>

 

 

결과

요청 URL

   http://localhost:8090/spring303/info/name/snoopy/age/100

 

----- ParamController.uriTempTest() -----
name : snoopy
age : 100 

 

 

 

요청 URL - Ant 스타일

   http://localhost:8090/spring303/info/aaa/item/apple

 

----- ParamController.antStyleTest() -----
item : apple

 

 

 

[참고자료] Spring 3.0 프로그래밍-최범균

+ Recent posts