-->
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.  [ 5 posts ] 
Author Message
 Post subject: Débutant : Hibernate 3.0.5 & MySQL 5.0
PostPosted: Mon Aug 08, 2005 8:12 am 
Beginner
Beginner

Joined: Mon Aug 08, 2005 7:54 am
Posts: 27
Bonjour,

Je suis débutant et g un problème de configuration sur lequel je ne trouve aucun post ou aide sur le net à ce sujet :

Quote:
INFO: Default entity-mode: pojo
Initial SessionFactory creation failed.java.lang.NoClassDefFoundError: org/objectweb/asm/Type


Le code utilisé est celui d'un tutorial très simple mais qui ne décrit cette erreur. Ci dessous j'ai joint mes deux fichiers de config:


hibernate.properties:

Code:
hibernate.dialect org.hibernate.dialect.MySQLDialect
hibernate.dialect org.hibernate.dialect.MySQLInnoDBDialect
hibernate.dialect org.hibernate.dialect.MySQLMyISAMDialect
hibernate.connection.driver_class com.mysql.jdbc.Driver
hibernate.connection.url jdbc:mysql://localhost/test
hibernate.connection.username root
hibernate.connection.password ****


hibernate.cfg.xml
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>
        <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/test</property>
        <property name="hibernate.connection.username">root</property>
        <property name="hibernate.connection.password">****</property>
        <property name="dialect">org.hibernate.dialect.HSQLDialect</property>
        <property name="show_sql">true</property>
        <property name="transaction.factory_class">
             org.hibernate.transaction.JDBCTransactionFactory
        </property>
       <property name="hibernate.cache.provider_class">
             org.hibernate.cache.HashtableCacheProvider
        </property>
        <property name="hibernate.hbm2ddl.auto">update</property>

        <mapping resource="com/ao/hibernateTutorial/Event.hbm.xml"/>

    </session-factory>

</hibernate-configuration>


My mapping seems to be correct, as my db's url... I'm quite dazed and confused...

Thanks for any help you can provide...

_________________
Belaran,
"Slowly climbing the moutain of Hibernate's mystery..."


Top
 Profile  
 
 Post subject:
PostPosted: Mon Aug 08, 2005 8:37 am 
Beginner
Beginner

Joined: Wed Jun 08, 2005 10:01 am
Posts: 22
Location: Italy
Hallo!

Code:
INFO: Default entity-mode: pojo
Initial SessionFactory creation failed.java.lang.NoClassDefFoundError: org/objectweb/asm/Type


Il semble que des libreries manquent.
C'est pas un erreur de ta configuration mais, peut-etre que l'example de ton tutorial a besoins des certains libreries.

Ciao,
nic


Top
 Profile  
 
 Post subject:
PostPosted: Mon Aug 08, 2005 8:52 am 
Beginner
Beginner

Joined: Mon Aug 08, 2005 7:54 am
Posts: 27
J'ai oublié de préciser que j'avais déjà explorer la piste "libraire" manquante. Il s'agit d'un package nommée asm ( pr manipuler du bytes code) mais cette dépendance n'est pas stipulé dans le tuto et je ne vois pas trop le rapport avec le cadre du tuto ( un POJO ) surtout cette erreur arrive à l'init de la session.

Une fois tous les package asm ajouté, y'avait encore des noclassdeffound... donc, je me demandais si ma config était pas foireuse...

_________________
Belaran,
"Slowly climbing the moutain of Hibernate's mystery..."


Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 09, 2005 5:06 am 
Expert
Expert

Joined: Thu Sep 04, 2003 8:23 am
Posts: 368
Il doit bien s'agir d'un pb de lib manquante.
Utilises tu Spring ? Il faut faire attention car entre ce que Spring dit qu'il faut utiliser comme jars pour hibernate et la réalité, il faut ajouter les deux jars asm d'hibernate.

Seb


Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 09, 2005 5:23 am 
Beginner
Beginner

Joined: Mon Aug 08, 2005 7:54 am
Posts: 27
Je n'utilise pas spring là il s'agit d'un simple tuto hibernate, mais effectivement je compte ensuite ajouter du hibernate dans spring.

La class manquante du package asm, une fois tout les jar ajouté, est CodeVisitor...

Code:
INFO: Default entity-mode: pojo
Initial SessionFactory creation failed.java.lang.NoClassDefFoundError: org/objectweb/asm/Type


J'a ajouté d'autres jar mais g encore des pb. Je suis passé à autre chose. G trouvé un tuto moins buggé...

Merci encore.

_________________
Belaran,
"Slowly climbing the moutain of Hibernate's mystery..."


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 5 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.