본문 바로가기
Programming Language/Java

[Java] @Resource 어노테이션 임포트 오류 : Resource cannot be resolved to a type

by 떠농 2022. 2. 18.
반응형

@Resource 어노테이션을 쓰려고 하였으나,

아래와 같이 Resource cannot be resolved to a type 에러 발생

 

해결 방법은 다음과 같다.

 

pom.xml에 아래 dependency를 추가한다.

1
2
3
4
5
<dependency>
   <groupId>javax.annotation</groupId>
    <artifactId>javax.annotation-api</artifactId>
    <version>1.3.2</version>
</dependency>
cs

 

그러면 Resource 어노테이션 임포트 성공!

 

반응형

'Programming Language > Java' 카테고리의 다른 글

[Java] 인스턴스란?  (0) 2022.05.10

댓글