Unable to instantiate default tuplizer [org.hibernate.tuple.entity.PojoEntityTuplizer]

后端 未结 20 2345
南方客
南方客 2020-12-08 02:10

I am developing an application with Hibernate and I get an Exception when I connect with database. The exception is:

Unable to instantiate default tuplizer [         


        
相关标签:
20条回答
  • 2020-12-08 02:12

    I am using spring 3.0 and Hibernate 3.6 in my project. I ran into the same error just now. Googling this error message brought me to this page.

    Funtik's comment on Jan 17 '12 at 8:49 helped me resolve the issue-

    "This tells me that javassist cannot be accessed. How do you include this library into the project?"

    So, I included java assist in my maven pom file as below:

    <dependency>
        <groupId>javassist</groupId>
        <artifactId>javassist</artifactId>
        <version>3.12.1.GA</version>
    </dependency>
    

    This resolved the issue for me. Thanks Funtik.

    0 讨论(0)
  • 2020-12-08 02:13

    I know its an old question and lots of answers are helpful but in my case, I faced with the same error unluckily the reason was different. (Spring boot version 2.0.5.RELEASE) If you are using

    IntelliJ idea 2018.1.5 or above and you set JDK version as JDK 11

    the same exception occurred. After updating the

    JDK version as 8

    the error is gone.

    0 讨论(0)
  • 2020-12-08 02:13

    Please do check Hibernate Property Name and Id Name also.

    0 讨论(0)
  • 2020-12-08 02:14

    Set the "long" type of id instead of java.lang.Integer. And add getters and setters to your fields.

    0 讨论(0)
  • 2020-12-08 02:14

    This issue is created due to name="iSetPointId" make "i" capital and corresponding model class changes.

    0 讨论(0)
  • 2020-12-08 02:15

    I was getting the same error even after adding no-arg constructor,Then I figured out that I was missing several JARs.I am posting this so that if anyone gets the error like I got, make sure you have added these JARs in your lib folder :

    activation-1.0.2.jar
    antlr-2.7.6.jar
    aopalliance.jar
    asm-1.5.3.jar
    asm-attrs-1.5.3.jar
    cglib-2.1_3.jar
    commons-beanutils-1.7.0.jar
    commons-collections-2.1.1.jar
    commons-digester-1.8.jar
    commons-email-1.0.jar
    commons-fileupload-1.1.1.jar
    commons-io-1.1.jar
    commons-lang-2.5.jar
    commons-logging-1.1.3.jar
    dom4j-1.6.1.jar
    dumbster-1.6.jar
    ehcache-1.2.3.jar
    ejb3-persistence-3.3.1.jar
    hibernate-commons-annotations-4.0.4.Final.jar
    hibernate-core-4.2.8.Final.jar
    icu4j-2.6.1.jar
    javassist-3.4.GA.jar
    javax.persistence_2.0.3.v201010191057.jar
    javax.servlet.jsp.jstl-1.2.1.jar
    jaxb-api-2.1.jar
    jaxb-impl-2.1.3.jar
    jaxen-1.1.1.jar
    jboss-logging-3.1.3.GA.jar
    jdom-1.0.jar
    jstl-1.2.jar
    jta-1.1.jar
    lucene-core-2.3.2.jar
    lucene-highlighter-2.0.0.jar
    mail-1.4.jar
    mysql-connector-java-5.0.8-bin.jar
    org.springframework.orm.jar
    slf4j-api-1.6.1.jar
    slf4j-log4j12-1.5.6.jar
    spring-aop-4.0.0.RELEASE.jar
    spring-aspects-4.0.0.RELEASE-javadoc.jar
    spring-beans-4.0.0.RELEASE.jar
    spring-build-src-4.0.0.RELEASE.jar
    spring-context-4.0.0.RELEASE.jar
    spring-core-4.0.0.RELEASE.jar
    spring-expression-4.0.0.RELEASE.jar
    spring-framework-bom-4.0.0.RELEASE.jar
    spring-jdbc-4.0.0.RELEASE.jar
    spring-orm-4.0.0.RELEASE.jar
    spring-tx-4.0.0.RELEASE.jar
    spring-web-4.0.0.RELEASE.jar
    spring-webmvc-4.0.0.RELEASE.jar
    stax-api-1.0-2.jar
    validation-api-1.0.0.GA.jar
    xalan-2.6.0.jar
    xercesImpl-2.6.2.jar
    xml-apis-1.3.02.jar
    xmlParserAPIs-2.6.2.jar
    xom-1.0.jar
    
    0 讨论(0)
提交回复
热议问题