[Spring] 스프링 기동시 Error creating bean with name 'requestMappingHandlerMapping' 오류원인
Spring Framework 2019. 6. 5. 14:24스프링 기동시 Error creating bean with name 'requestMappingHandlerMapping' 오류원인
만약 스프링 MVC를 사용한 웹 어플리케이션 기동시 아래와 같은 오류가 났다면 컨트롤러의 @RequestMapping 으로 설정된 경로를 확인하시기 바랍니다. 예외 로그를 자세히 보면 나와있지만 특정 맵핑 경로가 중복되어 발생한 오류입니다.
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'requestMappingHandlerMapping' defined in org.springframework.web.servlet.config.annotation.DelegatingWebMvcConfiguration: Invocation of init method failed; nested exception is java.lang.IllegalStateException: Ambiguous mapping. Cannot map 'sapApiController' method
...생략...
to {[/sap/order/numbers],methods=[GET]}: There is already 'sapApiController' bean method
...생략...
'Spring Framework' 카테고리의 다른 글
[Spring] NamedParameterJdbcTemplate LIKE 검색하는 방법 (0) | 2020.04.14 |
---|---|
[Spring] 스프링 SimpleJdbcCall 이용하여 프로시저 호출해서 out 파라미터 얻기 (0) | 2020.01.06 |
[Spring] MSSQL JdbcTemplate 프로시저 실행시 xx 문에서 결과 집합을 반환하지 않았습니다. 오류 원인 (0) | 2019.01.08 |
[Spring] XML 설정과 @Autowired 설정이 겹쳤을때 의존주입 우선순위 (0) | 2018.10.30 |
[Spring]@Primary 어노테이션과 UnsatisfiedDependencyException예외 more than one 'primary' bean 원인 및 해결 방법 (0) | 2018.10.22 |