-->
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.  [ 4 posts ] 
Author Message
 Post subject: [Hibernate3]Pb fichier de mapping
PostPosted: Thu May 26, 2005 5:28 am 
Beginner
Beginner

Joined: Wed May 25, 2005 8:25 am
Posts: 30
Bonjour j'ai la fichier de mapping suivant :

Code:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
   "-//Hibernate/Hibernate Mapping DTD//EN"
   "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd" >

<hibernate-mapping package="all4it.gmi.database">
   <class
      name="Employee"
      table="EMPLOYEE"
   >

      <property
         name="Id"
         column="ID"
         type="integer"
         not-null="true"
         length="22"
      />
      <property
         name="Name"
         column="NAME"
         type="string"
         not-null="false"
         length="30"
      />
      <property
         name="Firstname"
         column="FIRSTNAME"
         type="string"
         not-null="false"
         length="30"
      />


   </class>   
</hibernate-mapping>


Lorsque j'execute l'appli, j'ai un problème de parsing mais je ne vois pas trop pourquoi ... je suis un tuto est apparemment ca a l'air correct.

voilà une partie de l'erreur retournée


Code:
Caused by: org.hibernate.MappingException: invalid mapping
   at org.hibernate.cfg.Configuration.addInputStream(Configuration.java:399)
   at org.hibernate.cfg.Configuration.addResource(Configuration.java:449)
   ... 8 more
Caused by: org.xml.sax.SAXParseException: The content of element type "class" must match "(meta*,subselect?,cache?,synchronize*,comment?,(id|composite-id),discriminator?,(version|timestamp)?,(property|many-to-one|one-to-one|component|dynamic-component|properties|any|map|set|list|bag|idbag|array|primitive-array|query-list)*,((join*,subclass*)|joined-subclass*|union-subclass*),loader?,sql-insert?,sql-update?,sql-delete?,filter*)".
   at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException(ErrorHandlerWrapper.java:236)
   at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.error(ErrorHandlerWrapper.java:172)
   at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:382)
   at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:316)
   at com.sun.org.apache.xerces.internal.impl.dtd.XMLDTDValidator.handleEndElement(XMLDTDValidator.java:2048) ...


Une idée ? merci


Top
 Profile  
 
 Post subject: Re: [Hibernate3]Pb fichier de mapping
PostPosted: Thu May 26, 2005 5:37 am 
Regular
Regular

Joined: Mon Apr 25, 2005 5:36 am
Posts: 103
salut

essaye de mettre un truc de ce genre :

<id name="IdDept" type="java.lang.Integer">
<column name="ID_DEPARTEMENT" not-null="true" unique="true" />
<generator class="assigned" />

</id>

à la place de :
<property
name="Id"
column="ID"
type="integer"
not-null="true"
length="22"
/>


Top
 Profile  
 
 Post subject:
PostPosted: Fri May 27, 2005 4:13 am 
Beginner
Beginner

Joined: Wed May 25, 2005 8:25 am
Posts: 30
Salut !

merci pour la réponse, ca fonctionne.

Je ne savais pas que l'element id était obligatoire.

Pourtant le mapping a été généré par le plugin hibernate synchronizer.

Mais j'ai de plus en plus l'impression qu'il a du mal avec hibernate 3.

Merci en tout cas, bonne journée


Top
 Profile  
 
 Post subject:
PostPosted: Fri May 27, 2005 5:53 am 
Regular
Regular

Joined: Mon Apr 25, 2005 5:36 am
Posts: 103
oui alors en ce qui concerne les outils hibernate, il y a pas mal d'erreurs incompréhensible, que tu ne pourras voir qu'avec l'expérience.

Ne compte pas trop dessus

Essaye de bien comprendre toi , comment çà marche, sinon tu vas te planter


@ plouch


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