一、场景
1、idea编译java文件报错
二、报错信息
error:kotlin: module was compiled with an incompatible version of kotlin. the binary version of its metadata is 1.6.0, expected version is 1.1.15.
warning:kotlin: some jar files in the classpath have the kotlin runtime library bundled into them. this may cause difficult to debug problems if there's a different version of the kotlin runtime library in the classpath. consider removing these libraries from the classpath
三、重现步骤
1、先编译一遍项目
2、将其中一个java文件从原目录移动到其他目录
3、再次编译
四、原因
1、在第一次编译后,原目录会生成class文件
2、将java文件从原目录移动到其他目录后再次编译,会在新目录再次生成对应的class文件,这时再原目录和新目录都会生成同样的class文件,导致冲突
五、解决
rebuild project
即可,rebuild project
会先删除先前编译的class
发表评论