티스토리 뷰
redirect 경로가 헷갈렸었는데, 이번에 확실히 정리해봄
@RequestMapping(value = "/path1/path2", method = RequestMethod.GET) public String pathEx(HttpServletRequest request) throws Exception { return "redirect:path3"; } |
이런 코드가 있을때, redirect 경로는
1) (/)가 없을때 : "redirect:path3" => contextPath/path1/path3
2) (/)가 있을때 : "redirect:/path3" => contextPath/path3
'Spring' 카테고리의 다른 글
Async 어노테이션 사용 시, 순환참조 에러(circular reference) (0) | 2021.02.04 |
---|---|
스프링 웹 프로젝트 복사해서 프로젝트명 바꿔서 재활용하기 (0) | 2017.11.14 |
springMVC 에서 xml 설정 파일 설정하고 값 가져와서 사용하기 (0) | 2017.04.03 |
spring MVC session interceptor 예외처리(Spring3.2 & 3.1이하 ) (0) | 2017.02.20 |
Constructor threw exception; nested exception is java.lang.NoClassDefFoundError: org/codehaus/jackson/map/ObjectMapper (0) | 2017.02.12 |
댓글