Usage of API documented as @since 1.8+”报错的解决办法
出現如圖錯誤:
報錯信息:
Usage of API documented as @since 1.8+
This inspection finds all usages of methods that have @since tag in their documentation.
This may be useful when development is performed under newer SDK version as the target platform for production.
問題原因:
出現該問題的原因是由于使用了JAVA8的新特性,但是Language Level(最低可支持的版本)比較低,無法支持這些特性。比如設置的Language Level為6.0,可是卻使用了8.0/9.0的新特性,6.0無法解析這些特性,因此IDE會報錯來提醒我們。
解決方法:
如果對最低支持版本有要求,沒辦法改動的話,那就只能放棄使用報錯部分的代碼。
如果對支持版本沒有要求的話,可以改動IDE的Language Level來消除錯誤。
使用ctrl+shift+alt+S,打開Project Structure,選中側邊欄的Modules,在Sources窗口中修改Language Level(必須大于等于報錯信息給出的level)。改動后,IDE錯誤消失。
這里寫圖片描述
Maven項目每個Module都有單獨的pom.xml,如果不在pom.xml中進行配置,則默認將Module的Language Level設置為5。所以要在pom.xml文件中添加插件進行配置。
<build><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-compiler-plugin</artifactId><version>3.6.0</version><configuration><source>1.8</source><target>1.8</target></configuration></plugin></plugins> </build>總結
以上是生活随笔為你收集整理的Usage of API documented as @since 1.8+”报错的解决办法的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: [转载]VB网络聊天程序的开发(1)_彭
- 下一篇: CAD图案填充:什么是CAD线图案?