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 :

Clé composée, date .find retourne null [Débutant(e)]


Sujet :

JPA Java

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre confirmé
    Homme Profil pro
    graphisme & impression
    Inscrit en
    Mars 2011
    Messages
    118
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : graphisme & impression

    Informations forums :
    Inscription : Mars 2011
    Messages : 118
    Par défaut Clé composée, date .find retourne null
    Bonjour,

    Je suis débutant en informatique et j'essaie de faire mon premier programme avec JPA
    Lorsque j'utilise la méthode .find pour trouver un objet je reçois null alors que l'objet est bien dans la base de donnée. Je suppose qu'il s'agit d'un problème avec les dates mais je trouve pas malgré 2 bonne heures de recherches

    Merci beaucoup!

    Si quelqu'un a une idée:

    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
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
     
    Consultation consultationRecherche = new Consultation();
    			ConsultationId id = new ConsultationId();
    			id.setDate(new SimpleDateFormat("dd-MM-yy hh:mm:ss").parse("01-03-1985 13:20:00"));
    			System.out.println(id.getDate()+"-----------------------------------------------------");
    			id.setPatient_id(11);
     
        	 	ServicesCrudGeneriqueJPA<Consultation, ConsultationId>  scConsultation = new ServicesCrudGeneriqueJPA<Consultation, ConsultationId>();		
        		Consultation consultationRech = scConsultation.findById(consultationRecherche, id);
        	 	System.out.println(consultationRech);
     
        	 	Consultation consultationTest = AccesBDD.getInstance().createEntityManager().find(Consultation.class, id);
     
     
    package entites;
     
    import java.io.Serializable;
    import java.util.Date;
    import java.util.HashSet;
    import java.util.Set;
     
    import javax.persistence.CascadeType;
    import javax.persistence.Column;
    import javax.persistence.EmbeddedId;
    import javax.persistence.Entity;
    import javax.persistence.FetchType;
    import javax.persistence.OneToMany;
    import javax.persistence.OneToOne;
     
    import javax.persistence.JoinColumn;
    import javax.persistence.ManyToOne;
     
    import javax.persistence.Table;
    import javax.persistence.Temporal;
    import javax.persistence.TemporalType;
     
     
    import entites.clesCompose.ConsultationId;
     
     
    @SuppressWarnings("serial")
    @Entity
    @Table(name="consultation")
    public class Consultation implements Serializable{
     
     
    	@EmbeddedId
    	private ConsultationId idCompose = new ConsultationId();
     
    	@Column(name="date", nullable = false, insertable=false, updatable=false)
    	@Temporal(TemporalType.TIMESTAMP)
    	private Date date;
     
     
    	@Column(name="remarque", nullable = true)
    	private String remarque;
     
    	@ManyToOne
    	@JoinColumn(name = "patient_id", nullable = false, insertable=false, updatable=false)
    	private Patient patientAppartientConsultation;
     
    	@OneToOne(cascade = CascadeType.ALL, fetch=FetchType.LAZY)
    	@JoinColumn(name = "facture_id", unique = true, nullable = true)
    	private Facture factureConsultation;
     
    	@ManyToOne
    	@JoinColumn(name = "therapeute_id", nullable = false, insertable=false, updatable=false)
    	private Therapeute therapeuteExecuteConsultation;
     
    	public Consultation(){
     
    	}
     
    	public Consultation(Date pDate, String pRemarque){
    		setRemarque(pRemarque);
    		setDate(pDate);
    	}
     
     
     
    	public ConsultationId getIdCompose() {
    		return idCompose;
    	}
     
    	public void setIdCompose(ConsultationId idCompose) {
    		this.idCompose = idCompose;
    	}
     
    	public Date getDate() {
    		return date;
    	}
     
    	public void setDate(Date date) {
    		this.date = date;
    		this.idCompose.setDate(date);
    	}
     
    	public Patient getPatientAppartientConsultation() {
    		return patientAppartientConsultation;
    	}
     
    	public void setPatientAppartientConsultation(Patient patientAppartientConsultation) {
    		this.patientAppartientConsultation = patientAppartientConsultation;
    		this.idCompose.setPatient_id(patientAppartientConsultation.getId());
    	}
     
    	public String getRemarque() {
    		return remarque;
    	}
     
    	public void setRemarque(String remarque) {
    		this.remarque = remarque;
    	}
     
    	public Facture getFactureConsultation() {
    		return factureConsultation;
    	}
     
    	public void setFactureConsultation(Facture factureConsultation) {
    		this.factureConsultation = factureConsultation;
    	}
     
    	public Therapeute getTherapeuteExecuteConsultation() {
    		return therapeuteExecuteConsultation;
    	}
     
    	public void setTherapeuteExecuteConsultation(
    			Therapeute therapeuteExecuteConsultation) {
    		this.therapeuteExecuteConsultation = therapeuteExecuteConsultation;
    	}
     
     
     
     
     
     
     
    }
     
     
    package entites.clesCompose;
     
    import java.io.Serializable;
    import java.util.Date;
     
    import javax.persistence.Column;
    import javax.persistence.Embeddable;
    import javax.persistence.JoinColumn;
     
    import entites.Patient;
     
    @Embeddable
    public class ConsultationId implements Serializable{
    	@Column(name = "date")
    	private Date date;
     
    	@Column(name = "patient_id")
    	private Integer  patient_id;
     
    	public ConsultationId(){
     
    	}
     
    	public Date getDate() {
    		return date;
    	}
     
    	public void setDate(Date date) {
    		this.date = date;
    	}
     
    	public Integer getPatient_id() {
    		return patient_id;
    	}
     
    	public void setPatient_id(Integer patient_id) {
    		this.patient_id = patient_id;
    	}	
     
     
     
     
     
     
     
    }

  2. #2
    Membre Expert
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Juin 2007
    Messages
    2 938
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Ingénieur développement logiciels

    Informations forums :
    Inscription : Juin 2007
    Messages : 2 938
    Par défaut
    Bonjour,
    Ton erreur se trouve dans l’incompatibilité entre le format de date et la date en String que tu passes.
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    id.setDate(new SimpleDateFormat("dd-MM-yy hh:mm:ss").parse("01-03-1985 13:20:00"));
    Doit plutôt être
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    id.setDate(new SimpleDateFormat("dd-MM-yyyy hh:mm:ss").parse("01-03-1985 13:20:00"));
    .

  3. #3
    Membre confirmé
    Homme Profil pro
    graphisme & impression
    Inscrit en
    Mars 2011
    Messages
    118
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : graphisme & impression

    Informations forums :
    Inscription : Mars 2011
    Messages : 118
    Par défaut merci
    Hello,

    Merci pour ta piste, ça ne marche malheureusement pas…
    J'ai faits des recherches et si je fait un findAll j'obtiens ça:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
     
    List<Consultation> consultationRech = scConsultation.findAll(Consultation.class);
        		for(Consultation consult: consultationRech){
        			System.out.println(consult.getDate());
        		}
     
    1985-03-01 13:20:00.0
    Donc je me demande si c'est pas les millisecondes qui gênent…

    Alors j'ai essayé ça:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
     
    id.setDate(new SimpleDateFormat("dd-MM-yyyy hh:mm:ss.S").parse("01-03-1985 13:20:00.0"));
     
    System.out.println(id.getDate());
     
    Fri Mar 01 13:20:00 CET 1985
    Je m'aperçois donc que la date retournée par la base de donnée à des millisecondes et que si je fait un system out println ma date n'en a pas:
    Fri Mar 01 13:20:00 CET 1985

    Merci beaucoup si quelqu'un a une idée

  4. #4
    Membre Expert
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Juin 2007
    Messages
    2 938
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Ingénieur développement logiciels

    Informations forums :
    Inscription : Juin 2007
    Messages : 2 938
    Par défaut
    Peut on voir le mapping de ton entité Consultation?
    Le type en base c'est bien une date?
    Par ailleurs tu peux très bien ne pas récupérer les millisecondes se trouvant en base.

  5. #5
    Membre confirmé
    Homme Profil pro
    graphisme & impression
    Inscrit en
    Mars 2011
    Messages
    118
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : graphisme & impression

    Informations forums :
    Inscription : Mars 2011
    Messages : 118
    Par défaut mapping
    Hello,

    Merci beaucoup!

    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
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
     
     
    package entites;
     
    import java.io.Serializable;
    import java.util.Date;
    import java.util.HashSet;
    import java.util.Set;
     
    import javax.persistence.CascadeType;
    import javax.persistence.Column;
    import javax.persistence.EmbeddedId;
    import javax.persistence.Entity;
    import javax.persistence.FetchType;
    import javax.persistence.OneToMany;
    import javax.persistence.OneToOne;
     
    import javax.persistence.JoinColumn;
    import javax.persistence.ManyToOne;
     
    import javax.persistence.Table;
    import javax.persistence.Temporal;
    import javax.persistence.TemporalType;
     
     
    import entites.clesCompose.ConsultationId;
     
     
    @SuppressWarnings("serial")
    @Entity
    @Table(name="consultation")
    public class Consultation implements Serializable{
     
     
    	@EmbeddedId
    	private ConsultationId idCompose = new ConsultationId();
     
    	@Column(name="date", nullable = false, insertable=false, updatable=false)
    	@Temporal(TemporalType.TIMESTAMP)
    	private Date date;
     
     
    	@Column(name="remarque", nullable = true)
    	private String remarque;
     
    	@ManyToOne
    	@JoinColumn(name = "patient_id", nullable = false, insertable=false, updatable=false)
    	private Patient patientAppartientConsultation;
     
    	@OneToOne(cascade = CascadeType.ALL, fetch=FetchType.LAZY)
    	@JoinColumn(name = "facture_id", unique = true, nullable = true)
    	private Facture factureConsultation;
     
    	@ManyToOne
    	@JoinColumn(name = "therapeute_id", nullable = false, insertable=false, updatable=false)
    	private Therapeute therapeuteExecuteConsultation;
     
    	public Consultation(){
     
    	}
     
    	public Consultation(Date pDate, String pRemarque){
    		setRemarque(pRemarque);
    		setDate(pDate);
    	}
     
     
     
    	public ConsultationId getIdCompose() {
    		return idCompose;
    	}
     
    	public void setIdCompose(ConsultationId idCompose) {
    		this.idCompose = idCompose;
    	}
     
    	public Date getDate() {
    		return date;
    	}
     
    	public void setDate(Date date) {
    		this.date = date;
    		this.idCompose.setDate(date);
    	}
     
    	public Patient getPatientAppartientConsultation() {
    		return patientAppartientConsultation;
    	}
     
    	public void setPatientAppartientConsultation(Patient patientAppartientConsultation) {
    		this.patientAppartientConsultation = patientAppartientConsultation;
    		this.idCompose.setPatient_id(patientAppartientConsultation.getId());
    	}
     
    	public String getRemarque() {
    		return remarque;
    	}
     
    	public void setRemarque(String remarque) {
    		this.remarque = remarque;
    	}
     
    	public Facture getFactureConsultation() {
    		return factureConsultation;
    	}
     
    	public void setFactureConsultation(Facture factureConsultation) {
    		this.factureConsultation = factureConsultation;
    	}
     
    	public Therapeute getTherapeuteExecuteConsultation() {
    		return therapeuteExecuteConsultation;
    	}
     
    	public void setTherapeuteExecuteConsultation(
    			Therapeute therapeuteExecuteConsultation) {
    		this.therapeuteExecuteConsultation = therapeuteExecuteConsultation;
    	}
     
     
     
     
     
     
     
    }
     
     
    package entites.clesCompose;
     
    import java.io.Serializable;
    import java.util.Date;
     
    import javax.persistence.Column;
    import javax.persistence.Embeddable;
    import javax.persistence.JoinColumn;
     
    import entites.Patient;
     
    @Embeddable
    public class ConsultationId implements Serializable{
    	@Column(name = "date")
    	private Date date;
     
    	@Column(name = "patient_id")
    	private Integer  patient_id;
     
    	public ConsultationId(){
     
    	}
     
    	public Date getDate() {
    		return date;
    	}
     
    	public void setDate(Date date) {
    		this.date = date;
    	}
     
    	public Integer getPatient_id() {
    		return patient_id;
    	}
     
    	public void setPatient_id(Integer patient_id) {
    		this.patient_id = patient_id;
    	}	
     
     
     
     
     
     
     
    }

  6. #6
    Membre Expert
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Juin 2007
    Messages
    2 938
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Ingénieur développement logiciels

    Informations forums :
    Inscription : Juin 2007
    Messages : 2 938
    Par défaut
    Citation Envoyé par SuperArbre Voir le message
    Hello,

    Merci beaucoup!

    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
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
     
     
    package entites;
     
    import java.io.Serializable;
    import java.util.Date;
    import java.util.HashSet;
    import java.util.Set;
     
    import javax.persistence.CascadeType;
    import javax.persistence.Column;
    import javax.persistence.EmbeddedId;
    import javax.persistence.Entity;
    import javax.persistence.FetchType;
    import javax.persistence.OneToMany;
    import javax.persistence.OneToOne;
     
    import javax.persistence.JoinColumn;
    import javax.persistence.ManyToOne;
     
    import javax.persistence.Table;
    import javax.persistence.Temporal;
    import javax.persistence.TemporalType;
     
     
    import entites.clesCompose.ConsultationId;
     
     
    @SuppressWarnings("serial")
    @Entity
    @Table(name="consultation")
    public class Consultation implements Serializable{
     
     
    	@EmbeddedId
    	private ConsultationId idCompose = new ConsultationId();
     
    	@Column(name="date", nullable = false, insertable=false, updatable=false)
    	@Temporal(TemporalType.TIMESTAMP)
    	private Date date;
     
     
    	@Column(name="remarque", nullable = true)
    	private String remarque;
     
    	@ManyToOne
    	@JoinColumn(name = "patient_id", nullable = false, insertable=false, updatable=false)
    	private Patient patientAppartientConsultation;
     
    	@OneToOne(cascade = CascadeType.ALL, fetch=FetchType.LAZY)
    	@JoinColumn(name = "facture_id", unique = true, nullable = true)
    	private Facture factureConsultation;
     
    	@ManyToOne
    	@JoinColumn(name = "therapeute_id", nullable = false, insertable=false, updatable=false)
    	private Therapeute therapeuteExecuteConsultation;
     
    	public Consultation(){
     
    	}
     
    	public Consultation(Date pDate, String pRemarque){
    		setRemarque(pRemarque);
    		setDate(pDate);
    	}
     
     
     
    	public ConsultationId getIdCompose() {
    		return idCompose;
    	}
     
    	public void setIdCompose(ConsultationId idCompose) {
    		this.idCompose = idCompose;
    	}
     
    	public Date getDate() {
    		return date;
    	}
     
    	public void setDate(Date date) {
    		this.date = date;
    		this.idCompose.setDate(date);
    	}
     
    	public Patient getPatientAppartientConsultation() {
    		return patientAppartientConsultation;
    	}
     
    	public void setPatientAppartientConsultation(Patient patientAppartientConsultation) {
    		this.patientAppartientConsultation = patientAppartientConsultation;
    		this.idCompose.setPatient_id(patientAppartientConsultation.getId());
    	}
     
    	public String getRemarque() {
    		return remarque;
    	}
     
    	public void setRemarque(String remarque) {
    		this.remarque = remarque;
    	}
     
    	public Facture getFactureConsultation() {
    		return factureConsultation;
    	}
     
    	public void setFactureConsultation(Facture factureConsultation) {
    		this.factureConsultation = factureConsultation;
    	}
     
    	public Therapeute getTherapeuteExecuteConsultation() {
    		return therapeuteExecuteConsultation;
    	}
     
    	public void setTherapeuteExecuteConsultation(
    			Therapeute therapeuteExecuteConsultation) {
    		this.therapeuteExecuteConsultation = therapeuteExecuteConsultation;
    	}
     
     
     
     
     
     
     
    }
     
     
    package entites.clesCompose;
     
    import java.io.Serializable;
    import java.util.Date;
     
    import javax.persistence.Column;
    import javax.persistence.Embeddable;
    import javax.persistence.JoinColumn;
     
    import entites.Patient;
     
    @Embeddable
    public class ConsultationId implements Serializable{
    	@Column(name = "date")
            @Temporal(TemporalType.TIMESTAMP)
    	private Date date;
     
    	@Column(name = "patient_id")
    	private Integer  patient_id;
     
    	public ConsultationId(){
     
    	}
     
    	public Date getDate() {
    		return date;
    	}
     
    	public void setDate(Date date) {
    		this.date = date;
    	}
     
    	public Integer getPatient_id() {
    		return patient_id;
    	}
     
    	public void setPatient_id(Integer patient_id) {
    		this.patient_id = patient_id;
    	}	
     
     
     
     
     
     
     
    }
    Dans ton EmbbedeId il manquait
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    @Temporal(TemporalType.TIMESTAMP)
    sur la date.

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

Discussions similaires

  1. Zend Navigation : find retourne des nulls
    Par neperien dans le forum Zend
    Réponses: 0
    Dernier message: 24/02/2015, 09h39
  2. Réponses: 1
    Dernier message: 15/11/2012, 10h41
  3. opérateur + dans SELECT retourne null ?
    Par david_chardonnet dans le forum MS SQL Server
    Réponses: 2
    Dernier message: 19/01/2007, 10h47
  4. [ODBC] problème de dates - erreur pointeur null
    Par dorot dans le forum PHP & Base de données
    Réponses: 9
    Dernier message: 12/07/2006, 12h16

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