Back-End/에러와의 전쟁

[Error] - java.lang.IllegalStateException: Configuration error: found multiple declarations of @BootstrapWith for test class

얄루몬 2023. 8. 11. 18:24

[문제 상황]

java.lang.IllegalStateException: Configuration error: found multiple declarations of @BootstrapWith for test class

- 레포지토리 유닛테스트 진행 중 마주한 예외

 

[문제 해결]

@DataJpaTest와 @SpringbootTest 두개 애너테이션을 같이 사용하는 발생하는 예외이다.

둘 중 하나를 삭제하고 사용하면 해당 문제는 해결된다.