Spring Boot 3.4.0 버전부터 @MockBean Deprecated이 되었다.
·
Spring/Test
현재 진행하고 있는 `Study With Me` 프로젝트에서 `@MockBean`을 사용하려고 보니  deprecated 되었다.. 그럼 뭘로 대체 되었을까 찾아보았는데  `@MockitoBean`으로 대체되었음을 확인했다. 사용 방법은 아래처럼 똑같이 사용하면 된다.@MockitoBeanprivate StudyRoomCommandService commandService;  아래는 이곳저곳에서 deprecated 된다는 흔적이다. https://github.com/spring-projects/spring-boot/issues/41157 Make @MockBean respect @Qualifier when replacing beans in application context · Issue #41157 · ..