1. 程式人生 > >“Usage of API documented as @since 1.8+”報錯的解決辦法

“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>