Resource注解無法導入依賴使用javax.annotation的注解類
使用javax.annotation的注解類
javax.annotation.Resource 注解在eclipse中無法通過 ctrl + shift + O導入該注解類,是因為javax是屬於擴展庫中,需要手動下載,或者使用maven依賴如下:
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>jsr250-api</artifactId>
<version>1.0</version>
</dependency>