Intellij IDEA 出现"Usage of API documented as @since 1.6+"的解决办法

Posted winner-0715

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Intellij IDEA 出现"Usage of API documented as @since 1.6+"的解决办法相关的知识,希望对你有一定的参考价值。

具体报错内容如下:

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

报错图:

技术分享图片

看代码意思是,那个方法是自Java1.6开始的,但是,你的language level 才是5,级别不够,所以,就报错了。

根本的解决办法是在maven中设置编译级别

<properties>
    <java-version>1.7</java-version>
</properties>
<plugins>
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.2</version>
        <configuration>
            <source>${java-version}</source>
            <target>${java-version}</target>
            <encoding>UTF-8</encoding>
        </configuration>
    </plugin>
</plugins>

以上是关于Intellij IDEA 出现"Usage of API documented as @since 1.6+"的解决办法的主要内容,如果未能解决你的问题,请参考以下文章

在 Intellij IDEA 中不断出现 Gradle 错误“无法为对象堆保留足够的空间”

intellij idea java web怎么引入js

intellij idea 怎么导入jar

intellij idea 怎么自动生成变量声明

intellij idea怎么改界面颜色

在 Intellij idea 中 ,System.out.println("新的Book类"); 会提示“class or interface expected”