我尝试在netbeans 8.0.1上使用hibernate,spring和jpa运行一个Web应用程序,但是现在我在编译应用程序时遇到了这个异常...这里的错误如下:
Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default- compile) on project SMSXxxxx: Compilation failure: Compilation failure:
error: Problem with Filer: Attempt to recreate a file for type com.equitel.smsmanager.entities.TextMessageContent_
error: Problem with Filer: Attempt to recreate a file for type com.smsmanager.entities.SmsUser_
这是持久性单元,我的项目中只有一个
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
<persistence-unit name="SMSManagerPU" transaction-type="JTA">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<jta-data-source>java:/jboss/datasources/SMSManagerDS</jta-data-source>
<class>com.smsmanager.entities.Approval</class>
<class>com.smsmanager.entities.Changelog</class>
<class>com.smsmanager.entities.Contacts</class>
<class>com.smsmanager.entities.Dispatches</class>
<class>com.smsmanager.entities.MessageSchedule</class>
<exclude-unlisted-classes>false</exclude-unlisted-classes>
<properties>
<property name="javax.persistence.schema-generation.database.action" value="drop-and-create"/>
</properties>
</persistence-unit>
</persistence>
我没有设法修复此错误,你能帮我解决这个问题吗?
答案 0 :(得分:5)
由于某些原因,pom.xml
中存在依赖性,在我的情况下导致了问题。寻找并删除它:
<dependency>
<groupId>unknown.binary</groupId>
<artifactId>hibernate-jpamodelgen-4.3.1.Final</artifactId>
<version>SNAPSHOT</version>
<scope>provided</scope>
</dependency>
这可能是Netbeans中的一个错误。 https://netbeans.org/bugzilla/show_bug.cgi?id=183779
答案 1 :(得分:0)
检查您的pom.xml文件是否已添加maven-compiler-plugin
。如果没有添加插件,如下所示。
<plugin>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
您可以在cmd提示符中使用mvn clean install -X
找到根本原因。
在pom.xml
文件中检查那里提到的java版本,并检查 $ JAVA_HOME 中提到的java版本
环境变量。两者都应该是一样的。
同时检查