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

JPA Java Discussion :

org hibernate id IdentifierGenerationException


Sujet :

JPA Java

  1. #1
    Membre confirmé
    Inscrit en
    Avril 2007
    Messages
    137
    Détails du profil
    Informations forums :
    Inscription : Avril 2007
    Messages : 137
    Par défaut org hibernate id IdentifierGenerationException
    Bonjour,

    Voici mes entités:

    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
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    package entities;
     
    import java.io.Serializable;
    import java.util.Collection;
     
    import javax.persistence.Column;
    import javax.persistence.EmbeddedId;
    import javax.persistence.Entity;
    import javax.persistence.GeneratedValue;
    import javax.persistence.JoinColumn;
    import javax.persistence.JoinTable;
    import javax.persistence.ManyToMany;
    import javax.persistence.ManyToOne;
     
    @Entity
    public class Agence implements Serializable {
     
    	@EmbeddedId
    	private AgencePK pk;
     
    	@ManyToOne
    	@JoinColumn(name = "COD_POST", nullable = true)
    	private CodePostal codePostal;
     
    	@ManyToOne
    	@JoinColumn(name = "COD_PAYS", nullable = true)
    	private Pays codePays;
     
    	@ManyToOne
    	@JoinColumn(name = "COD_LOCA", nullable = true)
    	private Localite localite;
     
     
     
    	@Column(name="LIB_AGEN")
    	private String libAgen;
     
    	@Column(name="ADR_AGEN")
    	private String adrAgen;
     
    	@Column(name="VIL_AGEN")
    	private String vilAgen;
     
    	@Column(name="TEL_AGEN")
    	private String telAgen;
     
    	@Column(name="FAX_AGEN")
    	private String faxAgen;
     
    	@Column(name="EMAIL_AGEN")
    	private String emailAgen;
     
    	@Column(name="PER_CONT_AGEN")
    	private String perContAgen;
     
    	@Column(name="RES_AGEN")
    	private String resAgen;
     
     
    	public Agence() {
    		super();
    	}
     
    	public AgencePK getPk() {
    		return this.pk;
    	}
     
    	public void setPk(AgencePK pk) {
    		this.pk = pk;
    	}
     
     
    	public String getLibAgen() {
    		return this.libAgen;
    	}
     
    	public void setLibAgen(String libAgen) {
    		this.libAgen = libAgen;
    	}
     
    	public String getAdrAgen() {
    		return this.adrAgen;
    	}
     
    	public void setAdrAgen(String adrAgen) {
    		this.adrAgen = adrAgen;
    	}
     
    	public String getVilAgen() {
    		return this.vilAgen;
    	}
     
    	public void setVilAgen(String vilAgen) {
    		this.vilAgen = vilAgen;
    	}
     
     
    	public String getTelAgen() {
    		return this.telAgen;
    	}
     
    	public void setTelAgen(String telAgen) {
    		this.telAgen = telAgen;
    	}
     
    	public String getFaxAgen() {
    		return this.faxAgen;
    	}
     
    	public void setFaxAgen(String faxAgen) {
    		this.faxAgen = faxAgen;
    	}
     
    	public String getEmailAgen() {
    		return this.emailAgen;
    	}
     
    	public void setEmailAgen(String emailAgen) {
    		this.emailAgen = emailAgen;
    	}
     
    	public String getPerContAgen() {
    		return this.perContAgen;
    	}
     
    	public void setPerContAgen(String perContAgen) {
    		this.perContAgen = perContAgen;
    	}
     
    	public String getResAgen() {
    		return this.resAgen;
    	}
     
    	public void setResAgen(String resAgen) {
    		this.resAgen = resAgen;
    	}
     
    	public CodePostal getCodePostal() {
    		return codePostal;
    	}
     
    	public void setCodePostal(CodePostal codePostal) {
    		this.codePostal = codePostal;
    	}
    	public Pays getCodePays() {
    		return codePays;
    	}
     
    	public void setCodePays(Pays codePays) {
    		this.codePays = codePays;
    	}
    	public Localite getLocalite() {
    		return localite;
    	}
     
    	public void setLocalite(Localite localite) {
    		this.localite = localite;
    }
     
    }
    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
     
    package entities;
     
    import java.io.Serializable;
    import javax.persistence.Column;
    import javax.persistence.Embeddable;
    import javax.persistence.JoinColumn;
     
    @Embeddable
    public class AgencePK implements Serializable {
    	@Column(name="COD_AGEN")
    	private String codAgen;
     
    	@Column(name="COD_BANQ")
    	private String codBanq;
     
     
    	private static final long serialVersionUID = 1L;
     
    	public AgencePK() {
    		super();
    	}
     
    	public String getCodAgen() {
    		return this.codAgen;
    	}
     
    	public void setCodAgen(String codAgen) {
    		this.codAgen = codAgen;
    	}
     
     
    	public String getCodBanq() {
    		return codBanq;
    	}
     
    	public void setCodBanq(String codBanq) {
    		this.codBanq = codBanq;
    	}
     
     
    	@Override
    	public boolean equals(Object o) {
    		if (o == this) {
    			return true;
    		}
    		if ( ! (o instanceof AgencePK)) {
    			return false;
    		}
    		AgencePK other = (AgencePK) o;
    		return this.codAgen.equals(other.codAgen)
    			&& this.codBanq.equals(other.codBanq);
    	}
     
    	@Override
    	public int hashCode() {
    		final int prime = 31;
    		int hash = 17;
    		hash = hash * prime + this.codAgen.hashCode();
    		hash = hash * prime + this.codBanq.hashCode();
    		return hash;
    	}
     
    }
    Mon problème est que lorsque j'essaye d'insérer une nouvelle agence, ça génère l'exception: org.hibernate.id.IdentifierGenerationException: ids for this class must be manually assigned before calling save().

    Merci

  2. #2
    Expert confirmé
    Avatar de djo.mos
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    4 666
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Octobre 2004
    Messages : 4 666
    Par défaut
    Salut,
    Citation Envoyé par khaoula_14_05 Voir le message
    ids for this class must be manually assigned before calling save().
    Tout est là : il faut que tu initialise l'identifiant de ton entity avant de l'insérer :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    Agence a = new Agence();
    AgencePK apk = new AgencePK();
    apk.set....
    apk.set....
    a.setPk(apk);
     
    //ensuite tu peux faire l'insert

  3. #3
    Membre confirmé
    Inscrit en
    Avril 2007
    Messages
    137
    Détails du profil
    Informations forums :
    Inscription : Avril 2007
    Messages : 137
    Par défaut
    Merci infiniment

    J'ai déjà fait de même sauf que j'ai oublié la ligne: a.setPk(apk);


  4. #4
    Candidat au Club
    Inscrit en
    Juillet 2010
    Messages
    2
    Détails du profil
    Informations forums :
    Inscription : Juillet 2010
    Messages : 2
    Par défaut
    MERCI BCP
    ça m'a aidé aussi

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. org.hibernate.SessionException: Session is closed
    Par Le Pharaon dans le forum Hibernate
    Réponses: 7
    Dernier message: 26/07/2007, 17h42
  2. Exception : org.hibernate.PersistentObjectException
    Par mymyma dans le forum Hibernate
    Réponses: 4
    Dernier message: 19/07/2007, 15h33
  3. Réponses: 1
    Dernier message: 03/07/2007, 14h57
  4. Réponses: 3
    Dernier message: 09/10/2006, 14h11
  5. org.hibernate.hql.ast.QuerySyntaxError: unexpected token
    Par oughlad dans le forum Hibernate
    Réponses: 9
    Dernier message: 26/05/2006, 14h20

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