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

Java EE Discussion :

Problème de relation @OneToMany


Sujet :

Java EE

  1. #1
    Membre du Club
    Profil pro
    Inscrit en
    Août 2009
    Messages
    81
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Août 2009
    Messages : 81
    Points : 48
    Points
    48
    Par défaut Problème de relation @OneToMany
    Bonjour,

    Je viens vers vous pour résoudre 2 problèmes que je rencontre actuellement.

    Problème 1 :

    J'essaie de récupérer toutes les categoriesThemes (Lieux, Périodes, Civilisations, Genres,...) d'une categorie (Films, Téléfilms, Documentaires,...) en rejetant une categoriesThemes précise par son ID.

    Voici ma requête : SELECT DISTINCT c.categoriesThemes FROM Categorie c JOIN c.categoriesThemes ct WHERE c.id = :id AND ct.id <> 5

    Mais cela ne fonction pas, je retrouve bien dans mes résultats la categoriesThemes possédant l'id N° 5...

    Problème 2 :

    J'ai une entité Film, Serie, ... Une entité User et une entité Critique

    J'ai donc dans mes entités Film et Serie une liste de critiques avec la relation @OneToMany

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
     
    @JsonIgnore
    @OrderBy("id DESC")
    @OneToMany
    private Set<Critique> critiques = new HashSet<Critique>();
    et dans mon entité Critique j'ai la relation avec l'user

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     
    @OneToOne
    private User user;
    Ce qui au final me donne une table Critique contenant autant les critiques de films, séries,... et ensuite une table films_critiques (ou series_critiques) qui fait les liaisons entre les critiques et les films.

    Je sens que cela n'est pas correcte... De plus, un utilisateur peu poster plusieurs critiques pour le même film...

    Voici les classes entière :

    Film :

    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
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
     
    @Entity
    @Table(name="films")
    public class Film extends BaseEntity 
    {
    	@Column(name="titre", nullable=false)
        private String titre;
     
    	@JsonIgnore
    	@Column(name="titreoriginal")
    	private String titreOriginal;
     
    	@JsonIgnore
        @Column(name="date")
        private int date; 
     
    	@JsonIgnore
        @Column(name="cote")
        private double cote;
     
    	@JsonIgnore
        @Column(name="synopsis", columnDefinition="TEXT", nullable=false)
        private String synopsis;
     
        @Column(name="cover")
        private String cover;
     
        @JsonIgnore
        @Column(name="trailer")
        private String trailer;
     
        @JsonIgnore
        @Column(name="duree")
        private String duree;
     
        @Column(name="alphabetique")
        private char alphabetique;
     
        @Column(name="url")
        private String url;
     
        @Column(name="wikipedia")
        private String wikipedia;
     
        @JsonIgnore
        @Column(name="likes", nullable=false)
        private int like;
     
        @JsonIgnore
        @Column(name="dontlikes", nullable=false)
        private int dontLike;
     
        @JsonIgnore
        @OneToOne
        private Public publicCible;
     
        @JsonIgnore
        @OrderBy("pays ASC")
        @ManyToMany(fetch=FetchType.LAZY)
        @JoinTable(name="films_nationalites")
        private Set<Nationalite> nationalites = new HashSet<Nationalite>();
     
        @JsonIgnore
        @OrderBy("id ASC")
        @ManyToMany(fetch=FetchType.LAZY)
        @JoinTable(name="films_acteurs")
        private Set<Personne> acteurs = new HashSet<Personne>();
     
        @JsonIgnore
        @OrderBy("id ASC")
        @ManyToMany(fetch=FetchType.LAZY)
        @JoinTable(name="films_realisateurs")
        private Set<Personne> realisateurs = new HashSet<Personne>();
     
        @JsonIgnore
        @OrderBy("id ASC")
        @ManyToMany(fetch=FetchType.LAZY)
        @JoinTable(name="films_themes")
        private Set<Theme> themes = new HashSet<Theme>();
     
        @JsonIgnore
        @OneToOne
        private Categorie categorie;
     
        @JsonIgnore
        @OrderBy("id ASC")
        @ManyToMany(fetch=FetchType.LAZY)
        @JoinTable(name="films_torrents")
        private Set<Lien> torrents = new HashSet<Lien>();
     
        @JsonIgnore
        @OrderBy("id ASC")
        @ManyToMany(fetch=FetchType.LAZY)
        @JoinTable(name="films_directdownload")
        private Set<Lien> directDownload = new HashSet<Lien>();
     
        @JsonIgnore
        @OrderBy("id ASC")
        @ManyToMany(fetch=FetchType.LAZY)
        @JoinTable(name="films_streaming")
        private Set<Lien> streaming = new HashSet<Lien>();
     
        @JsonIgnore
        @OrderBy("id DESC")
        @OneToMany
        private Set<Critique> critiques = new HashSet<Critique>();
     
        /**
             *
             * Constructors
             */
        public Film() { }
     
        public Film(long id, String titre, char alphabetique, String cover, String url) {
        	this.setTitre(titre);
        	this.setAlphabetique(alphabetique);
        	this.setCover(cover);
        	this.setId(id);
        	this.setUrl(url);
        }
     
        public Film(long id, String titre, char alphabetique, String cover, String url, String synopsis, String duree, int date, Categorie categorie, String wikipedia) {
        	this.setTitre(titre);
        	this.setAlphabetique(alphabetique);
        	this.setCover(cover);
        	this.setId(id);
        	this.setUrl(url);
        	this.setSynopsis(synopsis);
        	this.setDuree(duree);
        	this.setDate(date);
        	this.setCategorie(categorie);
        	this.setWikipedia(wikipedia);
        }
     
        /**
             *
             * Getters
             */
        public String getTitre()
        {
            return this.titre;
        }
     
        public String getTitreOriginal()
        {
            return this.titreOriginal;
        }
     
        public int getDate()
        {
            return this.date;
        }
     
        public double getCote()
        {
            return this.cote;
        }
     
        public String getSynopsis()
        {
            return this.synopsis;
        }
     
        public String getCover()
        {
            return this.cover;
        }
     
        public String getTrailer()
        {
            return this.trailer;
        }
     
        public String getDuree()
        {
        	return this.duree;
        }
     
        public Set<Nationalite> getNationalites()
        {
        	return this.nationalites;
        }
     
        public Public getPublicCible()
        {
        	return this.publicCible;
        }
     
        public char getAlphabetique() 
        {
        	return this.alphabetique;
        }
     
        public String getWikipedia()
        {
        	return this.wikipedia;
        }
     
        public String getUrl()
        {
        	return this.url;
        }
     
        public int getLike()
        {
        	return this.like;
        }
     
        public int getDontLike()
        {
        	return this.dontLike;
        }
     
        public Set<Personne> getActeurs()
        {
        	return this.acteurs;
        }
     
        public Set<Theme> getThemes()
        {
        	return this.themes;
        }
     
        public Set<Lien> getTorrents()
        {
        	return this.torrents;
        }
     
        public Set<Lien> getDirectDownload()
        {
        	return this.directDownload;
        }
     
        public Set<Lien> getStreaming()
        {
        	return this.streaming;
        }
     
        public Set<Personne> getRealisateurs()
        {
        	return this.realisateurs;
        }
     
        public Set<Critique> getCritiques()
        {
        	return this.critiques;
        }
     
        public Categorie getCategorie()
        {
        	return this.categorie;
        }
     
        /**
             *
             * Setters
             */
        public void setTitre(String titre)
        {
            this.titre = titre;
        }
     
        public void setTitreOriginal(String titreOriginal)
        {
            this.titreOriginal = titreOriginal;
        }
     
        public void setDate(int date)
        {
            this.date = date;
        }
     
        public void setCote(double cote)
        {
            this.cote = cote;
        }
     
        public void setSynopsis(String synopsis)
        {
            this.synopsis = synopsis;
        }
     
        public void setCover(String cover)
        {
            this.cover = cover;
        }
     
        public void setDuree(String duree)
        {
        	this.duree = duree;
        }
     
        public void setTrailer(String trailer)
        {
            this.trailer = trailer;
        }
     
        public void setPublicCible(Public publicCible)
        {
        	this.publicCible = publicCible;
        }
     
        public void setAlphabetique(char alphabetique)
        {
        	this.alphabetique = alphabetique;
        }
     
        public void setUrl(String url)
        {
        	this.url = url;
        }
     
        public void setWikipedia(String wikipedia)
        {
        	this.wikipedia = wikipedia;
        }
     
        public void setCategorie(Categorie categorie)
        {
        	this.categorie = categorie;
        }
     
        /**
             *
             * Methods
             */
        public void addNationalite(Nationalite nationalite)
        {
            this.nationalites.add(nationalite);
        }
     
        public void removeNationalite(Nationalite nationalite)
        {
            this.nationalites.remove(nationalite);
        }
     
        public void addActeur(Personne personne)
        {
            this.acteurs.add(personne);
        }
     
        public void removeActeur(Personne personne)
        {
            this.acteurs.remove(personne);
        }
     
        public void addRealisateur(Personne personne) 
        {
        	this.realisateurs.add(personne);
        }
     
        public void removeRealisateur(Personne personne) 
        {
        	this.realisateurs.remove(personne);
        }
     
        public void addTorrent(Lien torrent) 
        {
        	this.torrents.add(torrent);
        }
     
        public void removeTorrent(Lien torrent) 
        {
        	this.torrents.remove(torrent);
        }
     
        public void addDirectDownload(Lien directDownload) 
        {
        	this.directDownload.add(directDownload);
        }
     
        public void removeDirectDownload(Lien directDownload) 
        {
        	this.directDownload.remove(directDownload);
        }
     
        public void addStreaming(Lien streaming) 
        {
        	this.streaming.add(streaming);
        }
     
        public void removeStreaming(Lien streaming) 
        {
        	this.streaming.remove(streaming);
        }
     
        public void addTheme(Theme theme) 
        {
        	this.themes.add(theme);
        }
     
        public void removeTheme(Theme theme) 
        {
        	this.themes.remove(theme);
        }
     
        public void addCritique(Critique critique)
        {
        	this.critiques.add(critique);
        }
     
        public void removeCritique(Critique critique)
        {
        	this.critiques.remove(critique);
        }
     
        public void addLike() 
        {
        	this.like++;
        }
     
        public void addDontLike() 
        {
        	this.dontLike++;
        }
    }

    Serie :

    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
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
     
    @Entity
    @Table(name="series")
    public class Serie extends BaseEntity 
    {
    	@Column(name="titre", nullable=false)
        private String titre;
     
    	@JsonIgnore
    	@Column(name="titreoriginal")
    	private String titreOriginal;
     
    	@JsonIgnore
        @Column(name="date")
        private int date; 
     
    	@JsonIgnore
        @Column(name="cote")
        private double cote;
     
    	@JsonIgnore
        @Column(name="synopsis", columnDefinition="TEXT", nullable=false)
        private String synopsis;
     
        @Column(name="cover")
        private String cover;
     
        @JsonIgnore
        @Column(name="trailer")
        private String trailer;
     
        @JsonIgnore
        @Column(name="duree")
        private String duree;
     
        @Column(name="alphabetique")
        private char alphabetique;
     
        @Column(name="url")
        private String url;
     
        @JsonIgnore
        @Column(name="likes", nullable=false)
        private int like;
     
        @JsonIgnore
        @Column(name="dontlikes", nullable=false)
        private int dontLike;
     
        @JsonIgnore
        @OneToOne
        private Public publicCible;
     
        @JsonIgnore
        @ManyToMany(fetch=FetchType.LAZY)
        @JoinTable(name="series_nationalites")
        private Set<Nationalite> nationalites = new HashSet<Nationalite>();
     
        @JsonIgnore
        @ManyToMany(fetch=FetchType.LAZY)
        @JoinTable(name="series_acteurs")
        private Set<Personne> acteurs = new HashSet<Personne>();
     
        @JsonIgnore
        @ManyToMany(fetch=FetchType.LAZY)
        @JoinTable(name="series_realisateurs")
        private Set<Personne> realisateurs = new HashSet<Personne>();
     
        @JsonIgnore
        @ManyToMany(fetch=FetchType.LAZY)
        @JoinTable(name="series_themes")
        private Set<Theme> themes = new HashSet<Theme>();
     
        @JsonIgnore
        @OneToOne
        private Categorie categorie;
     
        @JsonIgnore
        @OneToMany
        private List<Critique> critiques;
     
        /**
             *
             * Constructors
             */
        public Serie() { }
     
        public Serie(long id, String titre, char alphabetique, String cover, String url) {
        	this.setTitre(titre);
        	this.setAlphabetique(alphabetique);
        	this.setCover(cover);
        	this.setId(id);
        	this.setUrl(url);
        }
     
        public Serie(long id, String titre, char alphabetique, String cover, String url, String synopsis, String duree, int date, Categorie categorie) {
        	this.setTitre(titre);
        	this.setAlphabetique(alphabetique);
        	this.setCover(cover);
        	this.setId(id);
        	this.setUrl(url);
        	this.setSynopsis(synopsis);
        	this.setDuree(duree);
        	this.setDate(date);
        	this.setCategorie(categorie);
        }
     
        /**
             *
             * Getters
             */
        public String getTitre()
        {
            return this.titre;
        }
     
        public String getTitreOriginal()
        {
            return this.titreOriginal;
        }
     
        public int getDate()
        {
            return this.date;
        }
     
        public double getCote()
        {
            return this.cote;
        }
     
        public String getSynopsis()
        {
            return this.synopsis;
        }
     
        public String getCover()
        {
            return this.cover;
        }
     
        public String getTrailer()
        {
            return this.trailer;
        }
     
        public String getDuree()
        {
        	return this.duree;
        }
     
        public Set<Nationalite> getNationalites()
        {
        	return this.nationalites;
        }
     
        public Public getPublicCible()
        {
        	return this.publicCible;
        }
     
        public char getAlphabetique() 
        {
        	return this.alphabetique;
        }
     
        public String getUrl()
        {
        	return this.url;
        }
     
        public int getLike()
        {
        	return this.like;
        }
     
        public int getDontLike()
        {
        	return this.dontLike;
        }
     
        public Set<Personne> getActeurs()
        {
        	return this.acteurs;
        }
     
        public Set<Theme> getThemes()
        {
        	return this.themes;
        }
     
        public Set<Personne> getRealisateurs()
        {
        	return this.realisateurs;
        }
     
        public List<Critique> getCritiques()
        {
        	return this.critiques;
        }
     
        public Categorie getCategorie()
        {
        	return this.categorie;
        }
     
        /**
             *
             * Setters
             */
        public void setTitre(String titre)
        {
            this.titre = titre;
        }
     
        public void setTitreOriginal(String titreOriginal)
        {
            this.titreOriginal = titreOriginal;
        }
     
        public void setDate(int date)
        {
            this.date = date;
        }
     
        public void setCote(double cote)
        {
            this.cote = cote;
        }
     
        public void setSynopsis(String synopsis)
        {
            this.synopsis = synopsis;
        }
     
        public void setCover(String cover)
        {
            this.cover = cover;
        }
     
        public void setDuree(String duree)
        {
        	this.duree = duree;
        }
     
        public void setTrailer(String trailer)
        {
            this.trailer = trailer;
        }
     
        public void setPublicCible(Public publicCible)
        {
        	this.publicCible = publicCible;
        }
     
        public void setAlphabetique(char alphabetique)
        {
        	this.alphabetique = alphabetique;
        }
     
        public void setUrl(String url)
        {
        	this.url = url;
        }
     
        public void setCategorie(Categorie categorie)
        {
        	this.categorie = categorie;
        }
     
        /**
             *
             * Methods
             */
        public void addNationalite(Nationalite nationalite)
        {
            this.nationalites.add(nationalite);
        }
     
        public void removeNationalite(Nationalite nationalite)
        {
            this.nationalites.remove(nationalite);
        }
     
        public void addActeur(Personne personne)
        {
            this.acteurs.add(personne);
        }
     
        public void removeActeur(Personne personne)
        {
            this.acteurs.remove(personne);
        }
     
        public void addRealisateur(Personne personne) 
        {
        	this.realisateurs.add(personne);
        }
     
        public void removeRealisateur(Personne personne) 
        {
        	this.realisateurs.remove(personne);
        }
     
        public void addTheme(Theme theme) 
        {
        	this.themes.add(theme);
        }
     
        public void removeTheme(Theme theme) 
        {
        	this.themes.remove(theme);
        }   
     
        public void addCritique(Critique critique)
        {
        	this.critiques.add(critique);
        }
     
        public void removeCritique(Critique critique)
        {
        	this.critiques.remove(critique);
        }
     
        public void addLike() 
        {
        	this.like++;
        }
     
        public void addDontLike() 
        {
        	this.dontLike++;
        }
    }
    Critique :

    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
     
    @Entity
    @Table(name="critiques")
    public class Critique extends BaseEntity
    {
    	@Column(name="titre", nullable=false)
    	private String titre;
     
    	@Column(name="critique", columnDefinition="TEXT", nullable=false)
    	private String critique;
     
    	@Column(name="date", columnDefinition="DATETIME")
    	@DateTimeFormat(pattern="dd/MM/yyyy HH:mm:ss")
    	private Date date;
     
    	@Column(name="likes")
    	private int like;
     
    	@Column(name="dontlikes")
    	private int dontlike;
     
    	@Column(name="cotation")
    	private int cotation;
     
    	@OneToOne
        private User user;
     
    	@OneToMany(mappedBy="commentaire")
        private List<Commentaire> commentaires;
     
    	public Critique() {}
     
    	public String getTitre() {
    		return this.titre;
    	}
     
    	public String getCritique() {
    		return this.critique;
    	}
     
    	public Date getDate() {
    		return this.date;
    	}
     
    	public int getLike() {
    		return this.like;
    	}
     
    	public int getDontLike() {
    		return this.dontlike;
    	}
     
    	public int getCotation() {
    		return this.cotation;
    	}
     
    	public User getUser() {
    		return this.user;
    	}
     
    	public void setTitre(String titre) {
    		this.titre = titre;
    	}
     
    	public void setCritique(String critique) {
    		this.critique = critique;
    	}
     
    	public void setUser(User user) {
    		this.user = user;
    	}
     
    	public void setDate(Date date) {
    		this.date = date;
    	}
     
    	public void setCotation(int cotation) {
    		this.cotation = cotation;
    	}
     
    	public void addLike() {
    		this.like++;
    	}
     
    	public void addDontLike() {
    		this.dontlike++;
    	}
     
    	public List<Commentaire> getCommentaires()
        {
        	return this.commentaires;
        }
     
    	 public void addCommentaire(Commentaire commentaire)
        {
            this.commentaires.add(commentaire);
        }
     
        public void removeCommentaire(Commentaire commentaire)
        {
            this.commentaires.remove(commentaire);
        }
    }

    Si vous saviez me dire comment bien modéliser cela, ça m'aiderais énormément.

    Si vous voyez d'autres erreurs ou incohérence dans mon code, n'hésitez pas.

    Merci d'avance

  2. #2
    Membre du Club
    Profil pro
    Inscrit en
    Août 2009
    Messages
    81
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Août 2009
    Messages : 81
    Points : 48
    Points
    48
    Par défaut
    Bon, j'ai résolu le problème 1 en créant une bidirectionnalité me permettant ceci :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    SELECT ct FROM CategorieTheme ct JOIN ct.categorie c WHERE c.url = :url AND ct.id <> 5

    Maintenant, je n'explique toujours pas le fait que je n'arrive pas à mettre une contrainte sur un objet enfant et pouvoir procéder comme ceci :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    SELECT DISTINCT c.categoriesThemes FROM Categorie c JOIN c.categoriesThemes ct WHERE c.url = :url AND ct.id <> 5

    Si vous avez une explication...

    Personne pour le problème 2 ?

Discussions similaires

  1. Problème : Relation OneToMany/ManyToOne bidirectionnelle
    Par KrisWall dans le forum Doctrine2
    Réponses: 1
    Dernier message: 09/09/2012, 08h46
  2. Problème avec les OneToMany relations
    Par sim_mmm dans le forum JPA
    Réponses: 0
    Dernier message: 25/08/2009, 04h10
  3. Réponses: 7
    Dernier message: 21/01/2007, 12h12
  4. [conception] Requête de sélection problèmes de relations
    Par snoopy69 dans le forum Modélisation
    Réponses: 26
    Dernier message: 08/11/2005, 14h23
  5. Gestion club sportif (problème de relations )
    Par jemaflo dans le forum Access
    Réponses: 3
    Dernier message: 03/10/2005, 23h00

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