Bonjour,

Voilà, j'essaie de lire plusieurs lignes depuis ma base de données et les mettre dans une liste, pour ça, j'utilise ce 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
public ArrayList<CollaborateurVO> getAllCollaborateur() {
        SqlSession session = sf.openSession();
        try {
            log.info("Access to database");
 
            ArrayList<CollaborateurVO> collaborateurs = (ArrayList<CollaborateurVO>) session.selectList("com.pgp.xmlMapper.CollaborateurVOMapper.allCollaborateur");
 
    for(int i=0; i<collaborateurs.size();i++)
    log.error(" -----> nom: "+collaborateurs.get(i).getNomCollaborateur() +" :: prenom :"+collaborateurs.get(i).getPrenomCollaborateur()+" :: poste: "+collaborateurs.get(i).getSpetialiteCollaborateur()+" :: mail: "+collaborateurs.get(i).getEmailCollaborateur()+"  :: tel: "+collaborateurs.get(i).getTelephoneCollaborateur());
 
 
            return collaborateurs;
        } finally {
 
            session.close();
        }
    }
Voici le log de GlassFish:
Infos: 11:52:49.870 [http-thread-pool-8080(3)] DEBUG java.sql.PreparedStatement - ==> Executing: select * from collaborateur


Infos: 11:52:49.409 [http-thread-pool-8080(3)] INFO com.pgp.mybatisDAO.MyBatisDAO - Access to database

Infos: 11:52:49.870 [http-thread-pool-8080(3)] DEBUG java.sql.PreparedStatement - ==> Parameters:

Infos: 11:52:49.906 [http-thread-pool-8080(3)] DEBUG java.sql.ResultSet - <== Columns: ID_COLLABORATEUR, NOM, PRENOM, PASSWD, SPETIALITE, TELEPHONE, EMAIL, ADRESSE, EST_CHEF

Infos: 11:52:49.907 [http-thread-pool-8080(3)] DEBUG java.sql.ResultSet - <== Row: 1, Farouti, Ahmed, Ahmed, Developpement, 20986536, fourati.ahmed@gmail.com, Rue 2097, 1

Infos: 11:52:49.908 [http-thread-pool-8080(3)] DEBUG java.sql.ResultSet - <== Row: 2, Saddéli, Ali, Ali, Test, 99645256, saddeli.ali@gmail.com, Rue 5234, 0

Infos: 11:52:49.909 [http-thread-pool-8080(3)] DEBUG java.sql.ResultSet - <== Row: 3, Talléd, Mohamed, Mohamed, Concepteur, 24875735, talled.mohamed@gmail.com, Rue 2580, 0

Infos: 11:52:49.909 [http-thread-pool-8080(3)] ERROR com.pgp.mybatisDAO.MyBatisDAO - -----> nom: null :: prenom :null :: poste: null :: mail: null :: tel: null

Infos: 11:52:49.910 [http-thread-pool-8080(3)] ERROR com.pgp.mybatisDAO.MyBatisDAO - -----> nom: null :: prenom :null :: poste: null :: mail: null :: tel: null

Infos: 11:52:49.910 [http-thread-pool-8080(3)] ERROR com.pgp.mybatisDAO.MyBatisDAO - -----> nom: null :: prenom :null :: poste: null :: mail: null :: tel: null
Les données sont lues à partie de la base de données, la taille de la liste destination est correcte mais les données à l’intérieur sont nulles.

Voici le mappper que j'utilise pour cette table:
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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.pgp.xmlMapper.CollaborateurVOMapper" >
  <resultMap id="BaseResultMap" type="com.pgp.persistance.vo.CollaborateurVO" >
 
    <id column="ID_COLLABORATEUR" property="ID_COLLABORATEUR" jdbcType="INTEGER" />
    <result column="NOM_COLLABORATEUR" property="nomCollaborateur" jdbcType="VARCHAR" />
    <result column="PRENOM_COLLABORATEUR" property="prenomCollaborateur" jdbcType="VARCHAR" />
    <result column="PASSWD_COLLABORATEUR" property="passwdCollaborateur" jdbcType="VARCHAR" />
    <result column="SPETIALITE_COLLABORATEUR" property="spetialiteCollaborateur" jdbcType="VARCHAR" />
    <result column="TELEPHONE_COLLABORATEUR" property="telephoneCollaborateur" jdbcType="VARCHAR" />
    <result column="EMAIL_COLLABORATEUR" property="emailCollaborateur" jdbcType="VARCHAR" />
    <result column="ADRESSE_COLLABORATEUR" property="adresseCollaborateur" jdbcType="VARCHAR" />
    <result column="EST_CHEF" property="estChef" jdbcType="INTEGER" />
  </resultMap>
 
  <select id="allCollaborateur" resultMap="BaseResultMap">
        select * from collaborateur
 </select>
 
  <sql id="Example_Where_Clause" >
 
    <where >
      <foreach collection="oredCriteria" item="criteria" separator="or" >
        <if test="criteria.valid" >
          <trim prefix="(" suffix=")" prefixOverrides="and" >
            <foreach collection="criteria.criteria" item="criterion" >
              <choose >
                <when test="criterion.noValue" >
                  and ${criterion.condition}
                </when>
                <when test="criterion.singleValue" >
                  and ${criterion.condition} #{criterion.value}
                </when>
                <when test="criterion.betweenValue" >
                  and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
                </when>
                <when test="criterion.listValue" >
                  and ${criterion.condition}
                  <foreach collection="criterion.value" item="listItem" open="(" close=")" separator="," >
                    #{listItem}
                  </foreach>
                </when>
              </choose>
            </foreach>
          </trim>
        </if>
      </foreach>
    </where>
  </sql>
  <sql id="Update_By_Example_Where_Clause" >
 
    <where >
      <foreach collection="example.oredCriteria" item="criteria" separator="or" >
        <if test="criteria.valid" >
          <trim prefix="(" suffix=")" prefixOverrides="and" >
            <foreach collection="criteria.criteria" item="criterion" >
              <choose >
                <when test="criterion.noValue" >
                  and ${criterion.condition}
                </when>
                <when test="criterion.singleValue" >
                  and ${criterion.condition} #{criterion.value}
                </when>
                <when test="criterion.betweenValue" >
                  and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
                </when>
                <when test="criterion.listValue" >
                  and ${criterion.condition}
                  <foreach collection="criterion.value" item="listItem" open="(" close=")" separator="," >
                    #{listItem}
                  </foreach>
                </when>
              </choose>
            </foreach>
          </trim>
        </if>
      </foreach>
    </where>
  </sql>
  <sql id="Base_Column_List" >
 
    ID_COLLABORATEUR, NOM_COLLABORATEUR, PRENOM_COLLABORATEUR, PASSWD_COLLABORATEUR,
    SPETIALITE_COLLABORATEUR, TELEPHONE_COLLABORATEUR, EMAIL_COLLABORATEUR, ADRESSE_COLLABORATEUR,
    EST_CHEF
  </sql>
  <select id="selectByExample" resultMap="BaseResultMap" parameterType="com.pgp.persistance.vo.CollaborateurVOExample" >
 
    select
    <if test="distinct" >
      distinct
    </if>
    <include refid="Base_Column_List" />
    from pgp..collaborateur
    <if test="_parameter != null" >
      <include refid="Example_Where_Clause" />
    </if>
    <if test="orderByClause != null" >
      order by ${orderByClause}
    </if>
  </select>
  <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
    select
    <include refid="Base_Column_List" />
    from pgp..collaborateur
    where ID_COLLABORATEUR = #{ID_COLLABORATEUR,jdbcType=INTEGER}
  </select>
  <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
    delete from pgp..collaborateur
    where ID_COLLABORATEUR = #{ID_COLLABORATEUR,jdbcType=INTEGER}
  </delete>
  <delete id="deleteByExample" parameterType="com.pgp.persistance.vo.CollaborateurVOExample" >
    delete from pgp..collaborateur
    <if test="_parameter != null" >
      <include refid="Example_Where_Clause" />
    </if>
  </delete>
  <insert id="insert" parameterType="com.pgp.persistance.vo.CollaborateurVO" >
    insert into pgp..collaborateur (ID_COLLABORATEUR, NOM_COLLABORATEUR,
      PRENOM_COLLABORATEUR, PASSWD_COLLABORATEUR,
      SPETIALITE_COLLABORATEUR, TELEPHONE_COLLABORATEUR,
      EMAIL_COLLABORATEUR, ADRESSE_COLLABORATEUR,
      EST_CHEF)
    values (#{ID_COLLABORATEUR,jdbcType=INTEGER}, #{nomCollaborateur,jdbcType=VARCHAR},
      #{prenomCollaborateur,jdbcType=VARCHAR}, #{passwdCollaborateur,jdbcType=VARCHAR},
      #{spetialiteCollaborateur,jdbcType=VARCHAR}, #{telephoneCollaborateur,jdbcType=VARCHAR},
      #{emailCollaborateur,jdbcType=VARCHAR}, #{adresseCollaborateur,jdbcType=VARCHAR},
      #{estChef,jdbcType=INTEGER})
  </insert>
  <insert id="insertSelective" parameterType="com.pgp.persistance.vo.CollaborateurVO" >
    insert into pgp..collaborateur
    <trim prefix="(" suffix=")" suffixOverrides="," >
      <if test="ID_COLLABORATEUR != null" >
        ID_COLLABORATEUR,
      </if>
      <if test="nomCollaborateur != null" >
        NOM_COLLABORATEUR,
      </if>
      <if test="prenomCollaborateur != null" >
        PRENOM_COLLABORATEUR,
      </if>
      <if test="passwdCollaborateur != null" >
        PASSWD_COLLABORATEUR,
      </if>
      <if test="spetialiteCollaborateur != null" >
        SPETIALITE_COLLABORATEUR,
      </if>
      <if test="telephoneCollaborateur != null" >
        TELEPHONE_COLLABORATEUR,
      </if>
      <if test="emailCollaborateur != null" >
        EMAIL_COLLABORATEUR,
      </if>
      <if test="adresseCollaborateur != null" >
        ADRESSE_COLLABORATEUR,
      </if>
      <if test="estChef != null" >
        EST_CHEF,
      </if>
    </trim>
    <trim prefix="values (" suffix=")" suffixOverrides="," >
      <if test="ID_COLLABORATEUR != null" >
        #{ID_COLLABORATEUR,jdbcType=INTEGER},
      </if>
      <if test="nomCollaborateur != null" >
        #{nomCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="prenomCollaborateur != null" >
        #{prenomCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="passwdCollaborateur != null" >
        #{passwdCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="spetialiteCollaborateur != null" >
        #{spetialiteCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="telephoneCollaborateur != null" >
        #{telephoneCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="emailCollaborateur != null" >
        #{emailCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="adresseCollaborateur != null" >
        #{adresseCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="estChef != null" >
        #{estChef,jdbcType=INTEGER},
      </if>
    </trim>
  </insert>
  <select id="countByExample" parameterType="com.pgp.persistance.vo.CollaborateurVOExample" resultType="java.lang.Integer" >
    select count(*) from pgp..collaborateur
    <if test="_parameter != null" >
      <include refid="Example_Where_Clause" />
    </if>
  </select>
  <update id="updateByExampleSelective" parameterType="map" >
    update pgp..collaborateur
    <set >
      <if test="record.ID_COLLABORATEUR != null" >
        ID_COLLABORATEUR = #{record.ID_COLLABORATEUR,jdbcType=INTEGER},
      </if>
      <if test="record.nomCollaborateur != null" >
        NOM_COLLABORATEUR = #{record.nomCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="record.prenomCollaborateur != null" >
        PRENOM_COLLABORATEUR = #{record.prenomCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="record.passwdCollaborateur != null" >
        PASSWD_COLLABORATEUR = #{record.passwdCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="record.spetialiteCollaborateur != null" >
        SPETIALITE_COLLABORATEUR = #{record.spetialiteCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="record.telephoneCollaborateur != null" >
        TELEPHONE_COLLABORATEUR = #{record.telephoneCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="record.emailCollaborateur != null" >
        EMAIL_COLLABORATEUR = #{record.emailCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="record.adresseCollaborateur != null" >
        ADRESSE_COLLABORATEUR = #{record.adresseCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="record.estChef != null" >
        EST_CHEF = #{record.estChef,jdbcType=INTEGER},
      </if>
    </set>
    <if test="_parameter != null" >
      <include refid="Update_By_Example_Where_Clause" />
    </if>
  </update>
  <update id="updateByExample" parameterType="map" >
    update pgp..collaborateur
    set ID_COLLABORATEUR = #{record.ID_COLLABORATEUR,jdbcType=INTEGER},
      NOM_COLLABORATEUR = #{record.nomCollaborateur,jdbcType=VARCHAR},
      PRENOM_COLLABORATEUR = #{record.prenomCollaborateur,jdbcType=VARCHAR},
      PASSWD_COLLABORATEUR = #{record.passwdCollaborateur,jdbcType=VARCHAR},
      SPETIALITE_COLLABORATEUR = #{record.spetialiteCollaborateur,jdbcType=VARCHAR},
      TELEPHONE_COLLABORATEUR = #{record.telephoneCollaborateur,jdbcType=VARCHAR},
      EMAIL_COLLABORATEUR = #{record.emailCollaborateur,jdbcType=VARCHAR},
      ADRESSE_COLLABORATEUR = #{record.adresseCollaborateur,jdbcType=VARCHAR},
      EST_CHEF = #{record.estChef,jdbcType=INTEGER}
    <if test="_parameter != null" >
      <include refid="Update_By_Example_Where_Clause" />
    </if>
  </update>
  <update id="updateByPrimaryKeySelective" parameterType="com.pgp.persistance.vo.CollaborateurVO" >
    update pgp..collaborateur
    <set >
      <if test="nomCollaborateur != null" >
        NOM_COLLABORATEUR = #{nomCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="prenomCollaborateur != null" >
        PRENOM_COLLABORATEUR = #{prenomCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="passwdCollaborateur != null" >
        PASSWD_COLLABORATEUR = #{passwdCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="spetialiteCollaborateur != null" >
        SPETIALITE_COLLABORATEUR = #{spetialiteCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="telephoneCollaborateur != null" >
        TELEPHONE_COLLABORATEUR = #{telephoneCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="emailCollaborateur != null" >
        EMAIL_COLLABORATEUR = #{emailCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="adresseCollaborateur != null" >
        ADRESSE_COLLABORATEUR = #{adresseCollaborateur,jdbcType=VARCHAR},
      </if>
      <if test="estChef != null" >
        EST_CHEF = #{estChef,jdbcType=INTEGER},
      </if>
    </set>
    where ID_COLLABORATEUR = #{ID_COLLABORATEUR,jdbcType=INTEGER}
  </update>
  <update id="updateByPrimaryKey" parameterType="com.pgp.persistance.vo.CollaborateurVO" >
    update pgp..collaborateur
    set NOM_COLLABORATEUR = #{nomCollaborateur,jdbcType=VARCHAR},
      PRENOM_COLLABORATEUR = #{prenomCollaborateur,jdbcType=VARCHAR},
      PASSWD_COLLABORATEUR = #{passwdCollaborateur,jdbcType=VARCHAR},
      SPETIALITE_COLLABORATEUR = #{spetialiteCollaborateur,jdbcType=VARCHAR},
      TELEPHONE_COLLABORATEUR = #{telephoneCollaborateur,jdbcType=VARCHAR},
      EMAIL_COLLABORATEUR = #{emailCollaborateur,jdbcType=VARCHAR},
      ADRESSE_COLLABORATEUR = #{adresseCollaborateur,jdbcType=VARCHAR},
      EST_CHEF = #{estChef,jdbcType=INTEGER}
    where ID_COLLABORATEUR = #{ID_COLLABORATEUR,jdbcType=INTEGER}
  </update>
</mapper>
Quelqu'un saurait-il m'indiquer d'où peut venir le problème ?

Merci d'avance pour votre aide.