IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Hibernate Java Discussion :

Composed primary key


Sujet :

Hibernate Java

  1. #1
    Inactif  
    Profil pro
    Inscrit en
    Mai 2006
    Messages
    2 189
    Détails du profil
    Informations personnelles :
    Âge : 44
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2006
    Messages : 2 189
    Points : 2 336
    Points
    2 336
    Par défaut Composed primary key
    Hello,

    Je cherche à créer une entité DossierId qui me servira de clef primaire composé

    J'ai donc coder l'entité suivante :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
     
    package com.ibm.arpa.model;
     
    import javax.persistence.Column;
    import javax.persistence.Embeddable;
    import javax.persistence.FetchType;
    import javax.persistence.Id;
    import javax.persistence.ManyToMany;
     
    import org.apache.commons.lang.builder.EqualsBuilder;
    import org.apache.commons.lang.builder.HashCodeBuilder;
    import org.apache.commons.lang.builder.ToStringBuilder;
    import org.hibernate.annotations.Cascade;
     
    /**
     * Primary key for a Dossier, this is a composed primary key
     * 
     * @author Alexandre Jaquet
     *
     */
    @Embeddable
    public class DossierId {
     
    	/** The dossier id*/
    	@Id
    	@Column(name="dossierId")
    	private long dossierId;
     
    	/** The langue of the id. */
    	@ManyToOne(fetch = FetchType.EAGER)
    	@Cascade ((org.hibernate.annotations.CascadeType.SAVE_UPDATE))	
    	private Langue langue;
     
    	@ManyToOne(fetch = FetchType.EAGER)
    	@Cascade ((org.hibernate.annotations.CascadeType.SAVE_UPDATE))	
    	private Debiteur debiteur;
     
    	/**
             * Gets the dossier id
             * 
             * @return long returns the Dossier id
             */
    	public long getDossierId() {
    		return dossierId;
    	}
     
    	/**
             * Sets the Dossier id
             * 
             * @param dossierId
             *                      The id to set
             */
    	public void setDossierId(long dossierId) {
    		this.dossierId = dossierId;
    	}
     
    	/**
             * Gets the Langue of the Dossier
             * @return
             */
    	public Langue getLangue() {
    		return langue;
    	}
     
    	/**
             * Sets the Langue of the Dossier
             * 
             * @param langue
             *                      The Langue to set
             */
    	public void setLangue(Langue langue) {
    		this.langue = langue;
    	}
     
    	/**
             * Gets the Debiteur of the Dossier
             * 
             * @return Debiteur returns the Debiteur
             */
    	public Debiteur getDebiteur() {
    		return debiteur;
    	}
     
    	/**
             * Sets the Debiteur of the Dossier
             * 
             * @param debiteur
             *                      The Debiteur to set
             */
    	public void setDebiteur(Debiteur debiteur) {
    		this.debiteur = debiteur;
    	}
     
    	/**
             * Does our two object are equals ?
             * 
             * @param obj
             *                      The object to compare to
             * @return boolean returns true if the gived paramater is equal to our current object
             * 
             */
    	@Override
    	public boolean equals(Object obj) {
    		return EqualsBuilder.reflectionEquals(this, obj);
    	}
     
    	/**
             * Gets the hash code
             * 
             * @return int return the hash code of the current adresse
             */
    	@Override
    	public int hashCode() {
    		return HashCodeBuilder.reflectionHashCode(this);
    	}
     
    	/**
             * Make a String representation of the current adresse
             */
    	@Override
    	public String toString() {
    		return ToStringBuilder.reflectionToString(this);
    	}
    }
    Comment dois-je annoté mes attribus qui constituent ma primary key ? A savoir dossierId, Langue et Débiteur

    D'avance merci

  2. #2
    Nouveau membre du Club
    Développeur Java
    Inscrit en
    Mai 2006
    Messages
    32
    Détails du profil
    Informations personnelles :
    Âge : 44

    Informations professionnelles :
    Activité : Développeur Java

    Informations forums :
    Inscription : Mai 2006
    Messages : 32
    Points : 38
    Points
    38
    Par défaut
    Voila moi en générale comment je procède pour les clés composées :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
     
     
     
    @Entity
    public class UneClasse implements Serializable {
     
        @Embeddable
        public static class Id implements Serializable {
     
            @Id
            @Column(name="dossierId")
    	 private long dossierId;
     
            @ManyToOne(fetch = FetchType.EAGER)
    	@Cascade ((org.hibernate.annotations.CascadeType.SAVE_UPDATE))	
    	private Langue langue;
     
    	@ManyToOne(fetch = FetchType.EAGER)
    	@Cascade ((org.hibernate.annotations.CascadeType.SAVE_UPDATE))	
    	private Debiteur debiteur;
     
     
            public Id() {
            }
     
            public Id(Long dossierId, Langue langue, Debiteur debiteur) {
                this.dossierId = dossierId;
                this.langue    = langue;
                this.debiteur  = debiteur;
            }
     
           @Override
    	public boolean equals(Object obj) {
    		return EqualsBuilder.reflectionEquals(this, obj);
    	}
     
           @Override
    	public int hashCode() {
    		return HashCodeBuilder.reflectionHashCode(this);
    	}
     
        }
     
     
       @EmbeddedId
        private Id id = new Id();
       ....

Discussions similaires

  1. [QST] Clef composée et primary key pas bien ?
    Par Ry_Yo dans le forum Langage SQL
    Réponses: 7
    Dernier message: 26/02/2009, 10h23
  2. PRIMARY KEY - UNIQUE - INDEX
    Par Thierry8 dans le forum Requêtes
    Réponses: 4
    Dernier message: 16/12/2005, 23h28
  3. pb de primary key sur 2 colonnes
    Par new_wave dans le forum Designer
    Réponses: 14
    Dernier message: 25/11/2005, 11h05
  4. DROP PRIMARY KEY
    Par popopopo dans le forum Langage SQL
    Réponses: 2
    Dernier message: 04/08/2005, 11h11
  5. BDD, r-a-z index et indice primary key ?
    Par lord_paco dans le forum MS SQL Server
    Réponses: 9
    Dernier message: 11/07/2003, 10h24

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo