에러 :  'The import javax.annotation.Resource cannot be resolved'

 

원인 :  javax.annotation.Resource가 import 되지 않아서 발생한 에러
해결

pom.xml 파일에 추가 설정

		<!-- javax.annotation -->
		<dependency>
			<groupId>javax.annotation</groupId>
			<artifactId>javax.annotation-api</artifactId>
			<version>1.3.1</version>
		</dependency>

+ Recent posts