'java.lang.NoSuchFieldError' while using the JPA

丶灬走出姿态 提交于 2019-12-12 06:54:01

问题


I am getting the following error while trying out this JPA tutorial:

java.lang.NoSuchFieldError: NONE
    at org.hibernate.ejb.QueryImpl.<init>(QueryImpl.java:609)
    at org.hibernate.ejb.QueryImpl.<init>(QueryImpl.java:80)
    at org.hibernate.ejb.AbstractEntityManagerImpl.createQuery(AbstractEntityManagerImpl.java:272)
    at entity.PersonTest.insertAndRetrieve(PersonTest.java:50)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
    at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
    at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:76)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:236)
    at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:49)
    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)

Here is my persistence.xml:

<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
    version="2.0">

    <persistence-unit name="examplePersistenceUnit" transaction-type="RESOURCE_LOCAL">
        <class>entity.Person</class>
        <properties>
            <property name="hibernate.show_sql" value="false" />
            <property name="hibernate.format_sql" value="false" />

            <property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver" />
            <property name="hibernate.connection.url" value="jdbc:mysql://localhost:3306/jpa_test" />
            <property name="hibernate.connection.username" value="root" />
            <property name="hibernate.connection.password" value="admin" />

            <property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect" />
            <property name="hibernate.hbm2ddl.auto" value="create" />
        </properties>
    </persistence-unit>
</persistence>

Person.java

   package entity;

    import javax.persistence.Entity;
    import javax.persistence.GeneratedValue;
    import javax.persistence.Id;
    import javax.persistence.Table;

    @Entity 
    public class Person {

        @Id
        @GeneratedValue
        private int id;
        private String firstName;
        private char middleInitial;
        private String lastName;
        private String streetAddress1;
        private String streetAddress2;
        private String city;
        private String state;
        private String zip;

    .
    .
    .
    (getters and setters)

Part of my JUnit Test file:

@SuppressWarnings("unchecked")
    @Test
    public void insertAndRetrieve() {
        em.getTransaction().begin();
        em.persist(p1);
        em.persist(p2);
        em.getTransaction().commit();

        final List<Person> list = em.createQuery("select p from Person p")
                .getResultList();
        System.out.println("here...");

        assertEquals(2, list.size());

I am using MySQL db, the 'person' table is present in the database. And after

em.getTransaction().begin();
em.persist(p1);
em.persist(p2);
em.getTransaction().commit();

I can see the two records are inserted in the person table. But on the next statement, it fails.

EDIT 1: JARs in my build path:

antlr-2.7.6.jar, 
commons-collections-3.1.jar, 
dom4j-1.6.1.jar, hibernate3.jar, 
hibernate-annotations-3.5.5-Final.jar, 
hibernate-commons-annotations-3.2.0.Final.jar, 
hibernate-entitymanager-3.5.5-Final.jar, 
hibernate-entitymanager-3.5.5-Final-sources.jar, 
javaee-api-5.0-3.jar, 
javassist-3.9.0.GA.jar, 
log4j-1.2.12.jar, 
mysql-connector-java-5.1.15.jar, 
slf4j-api-1.6.1.jar, 
slf4j-simple-1.6.1.jar, 
hibernate-jpa-2.0-api-1.0.0-CR-1.jar

Can anyone tell me what I am doing wrong?

Thanks.


回答1:


Remove the ejb3-persistence.jar JAR file from the class path. It contains the interfaces of the JPA 1.0 specification. You'll need to retain the hibernate-jpa-2.0-api-1.0.0-CR-1.jar JAR file, for it contains the interfaces for the JPA 2.0 specification.

Note: If you need to work against JPA 1.0, then do not use Hibernate 3.5.5 for it contains the JPA 2.0 implementation. In the future, use Maven for dependency management; it will help you avoid these issues.

Addendum:

If I were to setup Hibernate EntityManager 3.5.5 (JPA 2) from scratch, these would be the files I would consider. The following list has been inferred from the Hibernate documentation :

  • hibernate3.jar
  • hibernate-jpa-2.0-api-1.0.0.Final.jar
  • antlr-2.7.6.jar
  • commons-collections-3.1.jar
  • dom4j-1.6.1.jar
  • javassist-3.9.0.GA.jar
  • jta-1.1.jar
  • slf4j-api-1.5.8.jar and either of
    • cglib-2.2.jar, or
    • javassist-3.9.0.GA.jar

The last two haven't been mentioned in the documentation, but are required. I don't see the need for any of the other JARs, except for mysql-connector-java-5.1.15.jar and log4j-1.2.12.jar (both of which could be retained).




回答2:


Looks like you're having a similar issue to this:

"java.lang.NoSuchFieldError: NONE" in hibernate with Spring 3, maven, JPA, c3p0



来源:https://stackoverflow.com/questions/6295389/java-lang-nosuchfielderror-while-using-the-jpa

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!