码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2018-02-05 00:21:32      阅读:584      评论:0      收藏:0      [点我收藏+]

标签:alt   分享图片   apache   body   img   utf-8   artifact   size   odi   

具体报错内容如下:

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+"的解决办法

标签:alt   分享图片   apache   body   img   utf-8   artifact   size   odi   

原文地址:https://www.cnblogs.com/winner-0715/p/8414569.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!