-->
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: [résolu]Mapping tricky entre 4 tables
PostPosted: Wed Sep 30, 2009 4:45 am 
Beginner
Beginner

Joined: Mon Sep 26, 2005 8:22 am
Posts: 24
Bonjour à tous,

Hibernate core : 3.3.0.SP1
Hibernate Annotations : 3.4.0.GA

J'ai une chouette (sic) appli a reprendre de PHP vers Java, tout ça sans toucher à la base de données. Ca poserait moins de problèmes si la base était correcte. D'où mon problème :

Voilà un bout du schéma :
Code:
                          [Rôle]
                              ^
                              |
                              |
                              |
                              V
[User]<--------------->[UserEntity]<--------------->[Entity]
                              (char (1) mail)


J'ai donc une table de jointure entre trois autres tables qui me permet de connaitre le rôle d'un utilisateur sur une entité. Mais cette table me dit aussi si je doit envoyer en mail ou pas à l'utilisateur sur modification de l'entité.

Dans la table UserEntity, je me retrouve donc avec 4 champs.

Si il n'y avait pas eu le mail, dans les entités j'aurai mappé autant de listes d'utilisateurs que de rôles (table fixe). Malheureusement le mail est là, et m'a (semble-t-il) forcé à avoir un objet UserEntity La génération auto hibernate m'a fait un objet avec un Id complexe et tous les champs :
Code:
@Entity
public class UserEntity implements java.io.Serializable {

   /**
    *
    */
   private static final long serialVersionUID = 9105783703237347058L;

   @EmbeddedId
   private UserEntityId id;

   @ManyToOne(fetch = FetchType.LAZY)
   @JoinColumn(name = "FK_ENTITY", nullable = false, insertable = false, updatable = false)
   private Entity entity;

   @ManyToOne(fetch = FetchType.LAZY)
   @JoinColumn(name = "FK_IDENT", nullable = false, insertable = false, updatable = false)
   private User user;

   @ManyToOne(fetch = FetchType.LAZY)
   @JoinColumn(name = "FK_ROLE", nullable = false, insertable = false, updatable = false)
   private Role role;

   @Column(name = "F_MAIL", nullable = false, precision = 1, scale = 0)
   private boolean mail;
}

@Embeddable
public class UserEntityId implements java.io.Serializable {

   /**
    *
    */
   private static final long serialVersionUID = 3065532416096191064L;

   @ManyToOne(fetch = FetchType.EAGER,optional=false)
   @JoinColumn(name = "FK_IDENT", insertable=false, updatable=false, nullable=false)
   private User user;


   @ManyToOne(fetch = FetchType.EAGER,optional=false)
   @JoinColumn(name = "FK_ENTITY", insertable=false, updatable=false, nullable=false)
   private Entity entity;

   @ManyToOne(fetch = FetchType.EAGER,optional=false)
   @JoinColumn(name = "FK_ROLE", insertable=false, updatable=false, nullable=false, unique=false)
   private Role role;
}


On continue avec le mapping de Entity :
Code:
@Entity
public class Entity {

   @OneToMany(fetch = FetchType.LAZY)
   @JoinColumn(name="FK_ENTITY")
   @SQLDeleteAll(sql="DELETE FROM UserEntity WHERE fk_entity = ?", check = ResultCheckStyle.COUNT)
   @SQLInsert(sql="INSERT INTO UserEntity (FK_entity, FK_IDENT, FK_ROLE, F_MAIL) VALUES (?, ?, ?, ?)", check = ResultCheckStyle.COUNT)
//   @SQLDelete(sql="DELETE FROM UserEntity WHERE fk_entity = ? AND FK_IDENT = ? AND fk_entity = ? AND FK_ROLE = ?", check = ResultCheckStyle.COUNT)
//   @SQLUpdate(sql="UPDATE UserEntity SET FK_entity = ?, FK_IDENT = ?, FK_ROLE = ?, F_MAIL = ? WHERE FK_entity = ?, FK_IDENT = ?, FK_ROLE = ?", check = ResultCheckStyle.COUNT)
   private Set<UserEntity> userEntities = new HashSet<UserEntity>(0);
}


Et avec ça, quand j'essaie de mettre à jour la liste des userEntity de mon entité, hibernate me génère ce code :
Code:
update userEntity set FK_entity=null where FK_entity=? and FK_IDENT=? and FK_entity=? and FK_ROLE=?

avec
Code:
2009-09-30 10:03:18 TRACE [org.hibernate.type.IntegerType nullSafeSet(l:151)] binding '140381' to parameter: 1
2009-09-30 10:03:18 TRACE [org.hibernate.type.StringType nullSafeSet(l:151)] binding 'IFBU6444' to parameter: 2
2009-09-30 10:03:18 TRACE [org.hibernate.type.IntegerType nullSafeSet(l:151)] binding '140381' to parameter: 3
2009-09-30 10:03:18 TRACE [org.hibernate.type.IntegerType nullSafeSet(l:151)] binding '1' to parameter: 4


donc la grande question (enfin)
pourquoi il essaye de me mettre un NULL, alors que j'ai une vrai valeur à setter ?
pourquoi l'entité est deux fois dans la requête ??

Mon mapping pue, j'en doute pas une seconde. Des idées pour l'améliorer ?


Last edited by brisssou on Wed Sep 30, 2009 9:39 am, edited 1 time in total.

Top
 Profile  
 
 Post subject: Re: Mapping tricky entre 4 tables
PostPosted: Wed Sep 30, 2009 9:37 am 
Beginner
Beginner

Joined: Mon Sep 26, 2005 8:22 am
Posts: 24
donc la réponse :
Le mapping est VRAIMENT dégueux.

Avec ça ça marche (mais pas dit que ce soit plus propre) :
Code:
@Entity
@Table(name = "user_entity")
@IdClass(entityAdministratorId.class)
public class UserEntity implements java.io.Serializable {


   @Id
   @Column(name = "FK_ENTITY")
   private Integer entityId;
   @Id
   @Column(name = "FK_IDENT")
   private String userId;
   @Id
   @Column(name = "FK_ROLE")
   private Integer roleId;

   @ManyToOne(fetch = FetchType.LAZY)
   @JoinColumn(name = "FK_entity", nullable = false, insertable = false, updatable = false)
   private Entity entity;

   @ManyToOne(fetch = FetchType.LAZY)
   @JoinColumn(name = "FK_IDENT", nullable = false, insertable = false, updatable = false)
   private User user;

   @ManyToOne(fetch = FetchType.LAZY)
   @JoinColumn(name = "FK_ROLE", nullable = false, insertable = false, updatable = false)
   private Role role;

   @Column(name = "F_MAIL", nullable = false, precision = 1, scale = 0)
   private boolean mail;
}


@Embeddable
public class UserEntityId implements java.io.Serializable {

   @Column(name = "FK_entity")
   private Integer poolId;

   @Column(name = "FK_IDENT")
   private String userId;

   @Column(name = "FK_ROLE")
   private Integer roleId;
}

@Entity
public class Pool {
   @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
   @Cascade(org.hibernate.annotations.CascadeType.ALL)
   @JoinColumn(name="FK_entity")
   @SQLDelete(sql="DELETE FROM USER_entity WHERE fk_entity = ? AND FK_IDENT = ? AND fk_pool = ? AND FK_ROLE = ?", check = ResultCheckStyle.COUNT)
   private Set<UserEntity> poolAdministrators = new HashSet<UserEntity>(0);
}


et voilà !


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.