Bonjour,

j'utilise la technologie ejb3 pour pour creer une application dont le role d'inserer des données dans une base de données (mysql)
j'ai crée une entity bean qui s'appelle Vol pour la table VOL:
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
 
package ejb;
 
import java.io.Serializable;
import javax.persistence.Basic;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.Table;
 
/**
 *
 * @author Administrateur
 */
@Entity
@Table(name = "vol")
@NamedQueries({@NamedQuery(name = "Vol.findAll", query = "SELECT v FROM Vol v"), @NamedQuery(name = "Vol.findById", query = "SELECT v FROM Vol v WHERE v.id = :id"), @NamedQuery(name = "Vol.findByDepart", query = "SELECT v FROM Vol v WHERE v.depart = :depart"), @NamedQuery(name = "Vol.findByDestination", query = "SELECT v FROM Vol v WHERE v.destination = :destination"), @NamedQuery(name = "Vol.findByHeure", query = "SELECT v FROM Vol v WHERE v.heure = :heure"), @NamedQuery(name = "Vol.findByDatevol", query = "SELECT v FROM Vol v WHERE v.datevol = :datevol"), @NamedQuery(name = "Vol.findByCompagnie", query = "SELECT v FROM Vol v WHERE v.compagnie = :compagnie"), @NamedQuery(name = "Vol.findByNVol", query = "SELECT v FROM Vol v WHERE v.nVol = :nVol"), @NamedQuery(name = "Vol.findByCommentaire", query = "SELECT v FROM Vol v WHERE v.commentaire = :commentaire")})
public class Vol implements Serializable {
    private static final long serialVersionUID = 1L;
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Basic(optional = false)
    @Column(name = "id")
    private Short id;
    @Column(name = "depart")
    private String depart;
    @Column(name = "destination")
    private String destination;
    @Column(name = "heure")
    private String heure;
    @Column(name = "datevol")
    private String datevol;
    @Column(name = "compagnie")
    private String compagnie;
    @Column(name = "n°vol")
    private Integer nVol;
    @Column(name = "commentaire")
    private String commentaire;
 
    public Vol() {
    }
 
    public Vol(Short id) {
        this.id = id;
    }
 
    public Short getId() {
        return id;
    }
 
    public void setId(Short id) {
        this.id = id;
    }
 
    public String getDepart() {
        return depart;
    }
 
    public void setDepart(String depart) {
        this.depart = depart;
    }
 
    public String getDestination() {
        return destination;
    }
 
    public void setDestination(String destination) {
        this.destination = destination;
    }
 
    public String getHeure() {
        return heure;
    }
 
    public void setHeure(String heure) {
        this.heure = heure;
    }
 
    public String getDatevol() {
        return datevol;
    }
 
    public void setDatevol(String datevol) {
        this.datevol = datevol;
    }
 
    public String getCompagnie() {
        return compagnie;
    }
 
    public void setCompagnie(String compagnie) {
        this.compagnie = compagnie;
    }
 
    public Integer getNVol() {
        return nVol;
    }
 
    public void setNVol(Integer nVol) {
        this.nVol = nVol;
    }
 
    public String getCommentaire() {
        return commentaire;
    }
 
    public void setCommentaire(String commentaire) {
        this.commentaire = commentaire;
    }
 
    @Override
    public int hashCode() {
        int hash = 0;
        hash += (id != null ? id.hashCode() : 0);
        return hash;
    }
 
    @Override
    public boolean equals(Object object) {
        // TODO: Warning - this method won't work in the case the id fields are not set
        if (!(object instanceof Vol)) {
            return false;
        }
        Vol other = (Vol) object;
        if ((this.id == null && other.id != null) || (this.id != null && !this.id.equals(other.id))) {
            return false;
        }
        return true;
    }
 
    @Override
    public String toString() {
        return "ejb.Vol[id=" + id + "]";
    }
 
}


puis j'ai créer un bean qui s'apelle facadeVol qui sert à realiser les actions de persistences voici le code :


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
package ejb;
 
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import javax.ejb.EJB;
import javax.ejb.Stateless;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
 
 
@Stateless
public class VolFacade implements VolFacadeLocal {
    @PersistenceContext
    private static EntityManager em;
 
    @EJB
    public  Vol vol;
 
    public  void create(Vol vol) {
        em.getTransaction().begin();
        em.persist(vol);
        em.getTransaction().commit();
    }
 
    public void edit(Vol vol) {
        em.getTransaction().begin();
        em.merge(vol);
        em.getTransaction().commit();
    }
 
    public void remove(Vol vol) {
        em.getTransaction().begin();
        em.remove(em.merge(vol));
        em.getTransaction().commit();
    }
 
    public Vol find(Object id) {
        return em.find(Vol.class, id);
    }
 
    public List<Vol> findAll() {
        return em.createQuery("select object(o) from Vol as o").getResultList();
    }
 
 
public static void main(String[] args){
    Vol voll = new Vol();
    voll.setDepart("dddddd");
    voll.setDestination("fgfdd");
    VolFacade vf =new VolFacade();
    vf.create(voll);
 
}
 
}
mais le probleme il ya une erreur d'execution de cette classe : Exception in thread "main" java.lang.NullPointerException
au niveau de la methode create()
svp quelqu'un peut m'aider
merci d'avance