[army] Parameter 1 of constructor in A required a bean of type B that could not be found. 오류
: 프로젝트에서 특정 빈을 찾지 못하는 에러 로그인, 회원가입 api 구현 후 실행시켜서 test해보려던 순간, 아래와 같은 에러를 마주쳤다. Parameter 1 of constructor in com.army.ardiary.service.SignService required a bean of type 'com.army.ardiary.repository.UserRepository' that could not be found. SignServiceUserRepositort를 찾을 수 없는, 특정 빈을 인식하지 못하는 중이라고 해석했고, UserRepository에 @Repository를 작성하는 것을 요구하고 있다고 생각했다. 하지만 UserRepository에는 이미 @Repository가 있는 상태...