반응형
Test 케이스를 작성하는데@Autowired로 분명히 Repositroy의존성을 주입해 주었는데도 계속 없다고 나왔습니다.
분명 Repository클래스에서도 @Repository라고 Annotation도 주었습니다.
해결책
해당 Test Class에 @SpringBootTest라는 Annotation을 붙이 않아서 생기는 문제였습니다. 해당 Annotation을 붙이면 정상적으로 인식이 됩니다.
solution
반응형
'SPRING > 에러' 카테고리의 다른 글
[ 에러 ] Parameter 0 of constructor in xxx required a bean of type 'xxx' that could not be found. (0) | 2021.01.01 |
---|---|
[ 에러 ] Field 'id' doesn't have a default value (0) | 2020.10.03 |
댓글