오류 상황
a bean with that name has already been defined in class path resource~~
해결 방법
1) application.yaml 에 spring.main.allow-bean-definition-overriding=true 추가하기
추가해도 해결되지 않는다.
왜냐하면 해당 옵션은 이미 동일한 이름의 bean이 있을떄 overriding 하겠다는 것인데,
실제로 다르게 생성되어야하는 빈이 동일한 이름으로 생성되어있을 경우 옵션을 넣어도 해결되지않는다.
2) 빈의 이름을 변경하여 해결하자
https://eocoding.tistory.com/70
반응형
'오류관리' 카테고리의 다른 글
Test ignored. with IntelliJ (0) | 2022.09.06 |
---|---|
[Spring] java.lang.IllegalStateException: Found multiple @SpringBootConfiguration annotated classes (0) | 2022.07.07 |
Cannot get a connection, pool error Timeout waiting for idle object (0) | 2022.01.11 |
No serializer found for class ... (0) | 2021.12.29 |
java.util.ConcurrentModificationException (0) | 2021.08.06 |