-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 7 posts ] 
Author Message
 Post subject: hibernate question
PostPosted: Wed Apr 08, 2009 5:04 am 
Newbie

Joined: Wed Apr 08, 2009 4:57 am
Posts: 6
Location: FRANCE
slt tout le monde,
voila j'ai un petit problème, j'ai réalisé une application qui utilise hibernate, mais je n'arrive pas à l'exécuter, j'ai tjrs cette erreur.
j'utilise NtBeans 6.5


Quote:


Exception in thread "main" java.lang.ExceptionInInitializerError
at com.test.rsyncModel.HibernateUtil.<clinit>(HibernateUtil.java:30)
at com.test.rsyncModel.EventManager.getPersonne(EventManager.java:29)
at com.test.rsyncModel.EventManager.main(EventManager.java:20)
Caused by: java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter.<init>(I)V
at net.sf.cglib.core.DebuggingClassWriter.<init>(DebuggingClassWriter.java:47)
at net.sf.cglib.core.DefaultGeneratorStrategy.getClassWriter(DefaultGeneratorStrategy.java:30)
at net.sf.cglib.core.DefaultGeneratorStrategy.generate(DefaultGeneratorStrategy.java:24)
at net.sf.cglib.core.AbstractClassGenerator.create(AbstractClassGenerator.java:216)
at net.sf.cglib.core.KeyFactory$Generator.create(KeyFactory.java:144)
at net.sf.cglib.core.KeyFactory.create(KeyFactory.java:116)
at net.sf.cglib.core.KeyFactory.create(KeyFactory.java:108)
at net.sf.cglib.core.KeyFactory.create(KeyFactory.java:104)
at net.sf.cglib.proxy.Enhancer.<clinit>(Enhancer.java:69)
at org.hibernate.proxy.pojo.cglib.CGLIBLazyInitializer.getProxyFactory(CGLIBLazyInitializer.java:117)
at org.hibernate.proxy.pojo.cglib.CGLIBProxyFactory.postInstantiate(CGLIBProxyFactory.java:43)
at org.hibernate.tuple.entity.PojoEntityTuplizer.buildProxyFactory(PojoEntityTuplizer.java:162)
at org.hibernate.tuple.entity.AbstractEntityTuplizer.<init>(AbstractEntityTuplizer.java:135)
at org.hibernate.tuple.entity.PojoEntityTuplizer.<init>(PojoEntityTuplizer.java:55)
at org.hibernate.tuple.entity.EntityEntityModeToTuplizerMapping.<init>(EntityEntityModeToTuplizerMapping.java:56)
at org.hibernate.tuple.entity.EntityMetamodel.<init>(EntityMetamodel.java:295)
at org.hibernate.persister.entity.AbstractEntityPersister.<init>(AbstractEntityPersister.java:434)
at org.hibernate.persister.entity.SingleTableEntityPersister.<init>(SingleTableEntityPersister.java:109)
at org.hibernate.persister.PersisterFactory.createClassPersister(PersisterFactory.java:55)
at org.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.java:226)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1294)
at com.test.rsyncModel.HibernateUtil.<clinit>(HibernateUtil.java:25)




ma classe Personne


Code:

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.test.rsyncBean;

import com.test.*;

/**
*
* @author zenadm
*/
public class Personne {

    private String idPersonne;
    private String perIdPersonne;
    private String nom;
    private String prenom;
    private String email;
    private String tel;
    private Compte compte;


   
    public Personne(){
     
    }

    public String getEmail() {
        return email;
    }

    public void setEmail(String email) {
        this.email = email;
    }

    public String getNom() {
        return nom;
    }

    public void setNom(String nom) {
        this.nom = nom;
    }

    public String getPrenom() {
        return prenom;
    }

    public void setPrenom(String prenom) {
        this.prenom = prenom;
    }

    public Compte getCompte() {
        return compte;
    }

    public void setCompte(Compte compte) {
        this.compte = compte;
    }

}

:


mon fichier mapping hibernate

Code:
Code :

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
  <class name="com.test.rsyncBean.Personne" table="personne">
    <id column="ID_PERSONNE" name="idPersonne" type="int">
      <generator class="native"/>
    </id>
    <property column="PER_ID_PERSONNE" name="perIdPersonne" not-null="true" type="string"/>
    <property column="NOM" name="nom" not-null="true" type="string"/>
    <property column="PRENOM" name="prenom" not-null="true" type="string"/>
    <property column="EMAIL" name="email" not-null="true" type="date"/>
    <property column="TEL" name="tel" not-null="false" type="double"/>
  </class>
</hibernate-mapping>




puis mon fichier conf


Code :

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
    <session-factory>
         <!-- SQL dialect -->
        <property name="hibernate.dialect"> org.hibernate.dialect.MySQLInnoDBDialect</property>
    <!-- Database connection settings -->
        <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/rsyncdb</property>
        <property name="hibernate.connection.username">dfrsyngggfc</property>
        <property name="hibernate.connection.password">ddzeffggn4yffouff</property>
     <!-- JDBC connection pool (use the built-in) -->
        <property name="hibernate.connection.pool_size">1</property>
        <!-- Echo all executed SQL to stdout -->
        <property name="hibernate.show_sql">true</property>
        <!-- Enable Hibernate's automatic session context management -->
        <property name="hibernate.current_session_context_class">thread</property>
        <!-- Drop and re-create the database schema on startup -->
        <property name="hibernate.hbm2ddl.auto">create</property>
        <mapping resource="com/test/rsyncBean/Personne.hbm.xml"/>
    </session-factory>
</hibernate-configuration>




et pour exécuter tout ça j'utilise le deux classes surventes :

Code:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

package com.test.rsyncModel;

import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;

/**
*
* @author zenadm
*/
//import org.hibernate.*;
//import org.hibernate.cfg.*;

public class HibernateUtil {

    private static final SessionFactory sessionFactory;

    static {
        try {
            // Create the SessionFactory from hibernate.cfg.xml
            sessionFactory = new Configuration().configure().buildSessionFactory();
           
        } catch (Throwable ex) {
            // Make sure you log the exception, as it might be swallowed
            System.err.println("Initial SessionFactory creation failed." + ex);
            throw new ExceptionInInitializerError(ex);
        }
    }

    public static SessionFactory getSessionFactory() {
        return sessionFactory;
    }

}






enfin ma classe main:


Code:

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

package com.test.rsyncModel;

import com.test.rsyncBean.Personne;
import org.hibernate.Session;




public class EventManager {

    public static void main(String[] args) {
        EventManager mgr = new EventManager();

   
            mgr.getPersonne();
            System.out.println(mgr);
       

        HibernateUtil.getSessionFactory().close();
    }

    private String getPersonne() {

        Session session = HibernateUtil.getSessionFactory().getCurrentSession();

        session.beginTransaction();

        Personne thePersonne = new Personne();
        thePersonne.getNom();
        thePersonne.getPrenom();

        session.save(thePersonne);

        session.getTransaction().commit();
        return thePersonne.getNom()+thePersonne.getPrenom();
    }

}


Top
 Profile  
 
 Post subject:
PostPosted: Wed Apr 08, 2009 11:51 am 
Beginner
Beginner

Joined: Sun Dec 28, 2008 6:01 pm
Posts: 24
looking at the exception, it indicates that you might have incorrect ASM jar files. You might want to download complete set of hibernate jar files again and retry.

__________________________________________________
Please do Rate if this post was helpful


Top
 Profile  
 
 Post subject:
PostPosted: Wed Apr 08, 2009 12:02 pm 
Newbie

Joined: Wed Apr 08, 2009 4:57 am
Posts: 6
Location: FRANCE
ok i see i have to post in english, so excuse my english

in fact, I use Netbeans 6.5, I did not download anything, Netbeans added the web server and Hibernate


the Hibernate-asm. jar of my project is presented as follows:
- Hibernate-asm. jar
-META-INF
MANIFEST.MF
-ORG
ObjectWeb -
-asm
Attribute.class
ByteVector.class
ClassAdapter.class
etc.class ......


MANIFEST.MF file contains:

Manifest-Version: 1.0
Ant-Version: Apache Ant 1.6.2
Created-By: 1.5.0_01-b08 (Sun Microsystems Inc.)
Implementation-Title: ASM
Implementation-Version: 1.5.3

Regards


Top
 Profile  
 
 Post subject:
PostPosted: Wed Apr 08, 2009 12:09 pm 
Beginner
Beginner

Joined: Sun Dec 28, 2008 6:01 pm
Posts: 24
Well, I have no idea about NetBeans. But, I would suggest that you download the hibernate jars yourself and add it to the classpath of your project. here is the url to download hibernate jar files
[url]http://sourceforge.net/project/showfiles.php?group_id=40712&package_id=127784

[/url]

__________________________________
Please do RATE


Top
 Profile  
 
 Post subject:
PostPosted: Thu Apr 09, 2009 3:19 am 
Newbie

Joined: Wed Apr 08, 2009 4:57 am
Posts: 6
Location: FRANCE
do you know, which one i have to select?


Top
 Profile  
 
 Post subject:
PostPosted: Thu Apr 09, 2009 11:36 am 
Beginner
Beginner

Joined: Sun Dec 28, 2008 6:01 pm
Posts: 24
You can try downloading the latest jar files. I guess the latest is 3.3.1. Give it a shot.

___________________________________________________
Please do RATE if this post was helpful


Top
 Profile  
 
 Post subject:
PostPosted: Mon Apr 13, 2009 6:17 pm 
Senior
Senior

Joined: Tue Aug 01, 2006 9:24 pm
Posts: 120
I use netbeans for personal projects, and I would second raj's thoughts. You'll have less problems if you setup the libraries yourself.

_________________
Please rate my replies as I need points for all of my questions also.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 7 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.