-->
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.  [ 2 posts ] 
Author Message
 Post subject: many-to-many oder index-many-to-many
PostPosted: Tue Nov 14, 2006 10:19 am 
Newbie

Joined: Tue Nov 14, 2006 8:50 am
Posts: 1
Hallo,

ich versuche eine Rollenverwaltung in Spring aufzubauen und habe zu diesem Zweck drei Tabellen SysUser (für die Benutzer), SysRole (für die Benutzerrollen z.B. Admin,...) und SysUserRole (stellt die Beziehung zwischen beiden her)

Da ein Benutzer mehrere Rollen und eine Rolle mehrere Benutzer haben kann ist es eine many-to-many-Relation.

Code:
<hibernate-mapping>
   <class name="com...model.SysRole" table="SysRole">
      <id name="id" column="id">
         <generator class="sequence">
            <param name="sequence">seqSysRole</param>
         </generator>
      </id>
      <property name="name" />
         <set name="user" table="sysuserrole" inverse="true" cascade="all">
            <key column="idsysrole"/>
             <many-to-many class="com.....SysUser" column="idsysuser"/>
          </set>
   </class>
</hibernate-mapping>

Code:
<hibernate-mapping>
   <class name="com...model.SysUser" table="SysUser">
      <id name="id" column="id">
         <generator class="sequence">
            <param name="sequence">seqSysUser</param>
         </generator>
      </id>
      <property name="username" />
      <property name="firstname" />
      <property name="lastname" />
         <set name="role" table="sysuserrole">
            <key column="idsysuser"/>
             <many-to-many class="com...model.SysRole" column="idsysrole"/>
       </set>   
   </class>
</hibernate-mapping>


Mein Problem ist nun, dass ich eine
Quote:
java.sql.BatchUpdateException: Hibernate ORA-01400: Einfügen von NULL in myDB.SysUserRole.ID

bekomme, wenn ich versuche Datensätze zu speichern, da ja keine SysUserRole.hbm.xml existiert, die das inkrementieren der ID steuert.

Nun meine Frage: wäre das Abändern der Mappings in index-many-to-many der richtige Weg? Welchen Typ anstatt Set sollte man dafür in diesem Fall dann benutzen?

Wäre für Tipps sehr dankbar.


Top
 Profile  
 
 Post subject:
PostPosted: Wed Nov 15, 2006 4:26 am 
Expert
Expert

Joined: Tue Nov 23, 2004 7:00 pm
Posts: 570
Location: mostly Frankfurt Germany
Quote:
da ja keine SysUserRole.hbm.xml existiert, die das inkrementieren der ID steuert.

Das ist sicherlich Unfug. die Relation Tabelle braucht nicht gemapped zu werden.

Poste mal bitte Deinen Quellkode.

_________________
Best Regards
Sebastian
---
Training for Hibernate and Java Persistence
Tutorials for Hibernate, Spring, EJB, JSF...
eBook: Hibernate 3 - DeveloperGuide
Paper book: Hibernate 3 - Das Praxisbuch
http://www.laliluna.de


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