Salut,
Je voudrai utiliser Hibernate via une de mes classes java : Utilisateur.java
Voici ma classe :
Code :
- package modele;
- import javax.persistence.GeneratedValue;
- import javax.persistence.GenerationType;
- import javax.persistence.Id;
- import org.hibernate.annotations.Entity;
- @Entity
- public class Utilisateur {
- private Long id;
- private String pseudo;
- private String pass;
- private String email;
- public Utilisateur() {
-
- }
- public Utilisateur(String pseudo, String pass, String email) {
- this.pseudo=pseudo;
- this.pass=pass;
- this.email=email;
- }
- /**
- * @return the id
- */
- @Id
- @GeneratedValue(strategy=GenerationType.AUTO)
- public Long getId() {
- return id;
- }
- /**
- * @param id the id to set
- */
- public void setId(Long id) {
- this.id = id;
- }
- /**
- * @return the pseudo
- */
- public String getPseudo() {
- return pseudo;
- }
- /**
- * @param pseudo the pseudo to set
- */
- public void setPseudo(String pseudo) {
- this.pseudo = pseudo;
- }
- /**
- * @return the pass
- */
- public String getPass() {
- return pass;
- }
- /**
- * @param pass the pass to set
- */
- public void setPass(String pass) {
- this.pass = pass;
- }
- /**
- * @return the email
- */
- public String getEmail() {
- return email;
- }
- /**
- * @param email the email to set
- */
- public void setEmail(String email) {
- this.email = email;
- }
- }
|
Mais j'obtient un message d'erreur :
Citation :
org.hibernate.MappingException: Unknown entity: modele.Utilisateur
|
Une idée d'ou ca peut venir ?
PS : Je ne veut pas utiliser les fichiers de config mais uniquement les annotation.
Merci