Ambiguous mapping found. Cannot map 에러가 날 경우
중복된 mapping 이 있을 경우 이다.
중복된 mapping 이 다른 컨트롤러에도 있을 수도 있으니 확인하면 된다.
@RequestMapping(value="/home.do")
public String home( HttpServletRequest request){
return "home"
}
@RequestMapping(value="/home.do")
public String home( HttpServletRequest request){
return "home"
}
'개발 > Spring' 카테고리의 다른 글
[Spring] Jsp jstl 현재 날짜 구하기 (0) | 2020.08.28 |
---|---|
[Spring] interceptor 에서Session 끊기는 경우 (2) | 2020.08.21 |
[Spring] org.springframework.web.context.ContextLoaderListener 에러 해결 방법 (0) | 2020.03.23 |
[Spring] Session(세션) 생성시 리스너 (0) | 2020.03.03 |
[Spring] Session(세션) 끝날때 리스너 (0) | 2020.03.03 |