Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- database
- db
- sql
- TIL
- 웹프로그래밍
- flask
- 알고리즘
- 파이썬
- rdbms
- 자바스크립트
- 오라클
- 백준
- PYTHON
- Oracle
- javascript
- 이클립스
- 링크
- 에러
- Git
- spring
- jQuery
- 자바
- 데이터베이스
- eclipse
- 플라스크
- java
- 스프링
- BOJ
- mybatis
- mysql
Archives
- Today
- Total
기록과 정리의 공간
[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