본문 바로가기

IT&Dev/ERROR 모음

[SPRING ERROR] Ambiguous mapping. Cannot map '***Controller' method

org.springframework.beans.factory.BeanCreationException: Error creating bean with name

org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping':

Invocation of init method failed; nested exception java.lang.IllegalStateException:

Ambiguous mapping. Cannot map '***Controller' method 

 

문제점: Controller에 중복된 @RequestMapping이 존재하여 생기는 오류

같은 @RequestMapping이 존재한다면 어노테이션을 컨트롤러 클래스나 메서드에 선언하여 사용할때

같은 이름의 bean을 허용하지 않기 때문에 에러가 발생한다.

 

해결방안: 중복된 @RequestMapping 이름을 제거해 준다.