我有一个简短的Java文件,只有一个main
方法。它从我称之为thirdpartylib
的第三方库中导入。我跑
javac -classpath "../thirdpartylib/lib/*" MyClass.java
在命令行。我得到以下命令行输出:
warning: Supported source version 'RELEASE_6' from annotation processor 'org.mangosdk.spi.processor.SpiProcessor' less than -source '1.8'
MyClass.java:14: error: unreported exception Exception; must be caught or declared to be thrown
d.put(125, new HashSet<>(Arrays.asList(0, 1, 2)));
^
exception thrown from implicit call to close() on resource variable 'facade'
MyClass.java:39: error: unreported exception Exception; must be caught or declared to be thrown
2 errors
1 warning
然后当我在编辑器中打开MyClass.java
来调查报告的错误时,我的Java文件已被完全重写! (我的编辑器撤消历史记录保存了我。)文件顶部显示
# Generated by org.mangosdk.spi.processor.SpiProcessor (0.2.4)
# Mon, 18 Jul 2016 10:10:47 -0500
并且我的其余代码看起来像按字母顺序按行排序 - 至少不是有效的Java语法。谷歌搜索到了一个名为defunct的明显SPI包裹。我没有在我的计算机上安装它,除非thirdpartylib
正在使用它,但这并不能解释为什么它会破坏我的源代码。
如果编译器不断删除我的源代码,如何编译我的程序?
答案 0 :(得分:3)
看起来类路径包含注释处理器。注释处理器通常应该只生成新资源而不是修改现有资源,但它们确实能够更改任何文件。
您可以尝试使用编译器选项-proc:none
来禁用所有注释处理。
javac -proc:none -classpath "../thirdpartylib/lib/*" MyClass.java