컨텍스트 경로 |
DispatcherServlet 매핑 URL패턴 |
실제 URL |
/chap07 |
/ |
http://host:port/chap07/event/list |
/chap07 |
/main/* |
http://host:port/chap07/main/event/list |
value를 이용해서 경로를 지정할 수 있다.
@RequestMapping(value = "/event/create", method = RequestMethod.GET)
public String home(Locale locale, Model model) {
}
여러 경로를 한 메서드에서 처리하고 싶다면 배열로 경록 목록을 지정 할 수 있다.
@RequestMapping({"/main","/index"})
public String home(Locale locale, Model model) {
}
'JAVA > Spring 4.0' 카테고리의 다른 글
Spring4.0 GET,POST 파라미터 전달 (0) | 2015.09.16 |
---|---|
Spring4.0 @PathVariable 이용한 경로 변수 (0) | 2015.09.16 |
Spring4.0 @RequestParam 이용한 전달 (0) | 2015.09.16 |
Spring4.0 파라미터 요청 , 전달 (0) | 2015.09.16 |
Spring4.0 @RequestMapping 메소드 (0) | 2015.09.16 |