我目前正在使用IntelliJ IDE(正是INTELIJ IDEA 2017.1.6版本)构建JavaFX应用程序。在我想要构建工件或捆绑应用程序之前,运行应用程序一直很好,但是不幸的是,它拒绝构建或重建项目。我试过了
File> Invalidate Caches / Restart ...,
然后尝试:
sudo git clean -dfx
(但它删除了.idea,build和lib文件夹,其中包含运行该应用程序所需的库-谢谢上帝,我已经备份了文件夹,因此我能够替换它,因为它也无法运行)
,如此处所述 java.lang.NoClassDefFoundError:org / apache / tools / ant / util / ReaderInputStream vaadin + gradle + intelliJ
我也尝试了(NoClassDefFound:org / apache / tools / ant / util / ReaderInputStream)。但是该项目使用的是Intelij默认的JavaFX构建,而没有gradle。
project.iml 文件内容:
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="hibernate" name="Hibernate">
<configuration>
<datasource-map>
<unit-entry name="major:hibernate.cfg.xml" />
</datasource-map>
<naming-strategy-map />
<deploymentDescriptor name="hibernate.cfg.xml" url="file://$MODULE_DIR$/src/major/MembershipAccount.hbm.xml" />
<deploymentDescriptor name="hibernate.cfg.xml" url="file://$MODULE_DIR$/src/major/hibernate.cfg.xml" />
</configuration>
</facet>
</component>
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/resources" type="java-resource" />
相关分类