deli2025 | 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 :
- @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 :
- @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 :
- @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 :
- @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 :
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 |