Notice
Recent Posts
Recent Comments
기록과 정리의 공간
[Spring] @Resource 어노테이션 : import javax.annotation.Resource cannot be resolved 에러 본문
라이브러리&프레임워크/Spring
[Spring] @Resource 어노테이션 : import javax.annotation.Resource cannot be resolved 에러
딸기맛도나쓰 2020. 12. 6. 21:14해결 방법
pom.xml
에 아래 dependency
를 추가해준다.
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
</dependency>
'라이브러리&프레임워크 > Spring' 카테고리의 다른 글
Comments