IntelliJ IDEA语法报错"Usage of API documented as @since 1.6+"的解决办法
程序员文章站
2024-02-28 09:56:04
具体报错内容如下:
this inspection finds all usages of methods that have @since tag in their d...
具体报错内容如下:
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,级别不够,所以,就报错了。在这个编辑器里面有好 几个地方都有关于这个jdk的版本的设置。
这么改完之后,乍一看好像没问题了,但是,一会问题就又出来啦,还得如下,在maven build 里面添加如下的插件,设置一下java的版本就好啦。
<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>
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接