[Spring] javax.annotation.Resource import 안되는 경우

smiler·2023년 5월 14일
0
post-thumbnail

import가 안되는경우 @Resource 어노테이션을 사용할 수 없습니다.
아래 depenency 를 추가해주세요.

https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc/3.41.2.1

Maven

<!-- https://mvnrepository.com/artifact/javax.annotation/javax.annotation-api -->
<dependency>
    <groupId>javax.annotation</groupId>
    <artifactId>javax.annotation-api</artifactId>
    <version>1.3.2</version>
</dependency>

Gradle

// https://mvnrepository.com/artifact/javax.annotation/javax.annotation-api
implementation group: 'javax.annotation', name: 'javax.annotation-api', version: '1.3.2'

0개의 댓글