Bonjour,
je suis débute la programmation web en Java....
j'ai ce message d'erreur de tomcat que je ne comprends pas :
c'est une application basique mais c'est uniquement pour m'entraîner....
j'ai une servlet (appelée testMySQL) dont 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
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
417
418
419
420
421
422
423
424
425 org.apache.jasper.JasperException: Impossible de compiler la classe pour la JSP: An error occurred at line: 1 in the generated java file The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files An error occurred at line: 1 in the generated java file The type java.io.Serializable cannot be resolved. It is indirectly referenced from required .class files An error occurred at line: 1 in the generated java file The type java.io.IOException cannot be resolved. It is indirectly referenced from required .class files An error occurred at line: 1 in the generated java file The type java.lang.Exception cannot be resolved. It is indirectly referenced from required .class files An error occurred at line: 1 in the generated java file The type java.lang.String cannot be resolved. It is indirectly referenced from required .class files An error occurred at line: 1 in the generated java file The type java.util.Enumeration cannot be resolved. It is indirectly referenced from required .class files An error occurred at line: 1 in the generated java file The type java.lang.Throwable cannot be resolved. It is indirectly referenced from required .class files An error occurred at line: 6 in the generated java file Only a type can be imported. java.util.ArrayList resolves to a package An error occurred at line: 7 in the generated java file The import individus cannot be resolved An error occurred at line: 8 in the generated java file The import java.io.IOException cannot be resolved An error occurred at line: 10 in the generated java file The hierarchy of the type affiche_jsp is inconsistent An error occurred at line: 10 in the generated java file The type affiche_jsp must implement the inherited abstract method JspSourceDependent.getDependants() An error occurred at line: 13 in the generated java file java.util.List cannot be resolved to a type An error occurred at line: 15 in the generated java file Object cannot be resolved to a type An error occurred at line: 16 in the generated java file _jspx_dependants cannot be resolved An error occurred at line: 20 in the generated java file java.io.IOException cannot be resolved to a type An error occurred at line: 20 in the generated java file No exception of type ServletException can be thrown; an exception type must be a subclass of Throwable An error occurred at line: 28 in the generated java file Object cannot be resolved to a type Une erreur s'est produite à la ligne: 2 dans le fichier jsp: /affiche.jsp The type java.io.Writer cannot be resolved. It is indirectly referenced from required .class files 1: <%@ page language="java" contentType="text/html; charset=UTF-8" 2: pageEncoding="UTF-8"%> 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); Une erreur s'est produite à la ligne: 2 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 1: <%@ page language="java" contentType="text/html; charset=UTF-8" 2: pageEncoding="UTF-8"%> 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); Une erreur s'est produite à la ligne: 2 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 1: <%@ page language="java" contentType="text/html; charset=UTF-8" 2: pageEncoding="UTF-8"%> 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); Une erreur s'est produite à la ligne: 5 dans le fichier jsp: /affiche.jsp ArrayList cannot be resolved to a type 2: pageEncoding="UTF-8"%> 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> Une erreur s'est produite à la ligne: 5 dans le fichier jsp: /affiche.jsp individus cannot be resolved to a type 2: pageEncoding="UTF-8"%> 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> Une erreur s'est produite à la ligne: 5 dans le fichier jsp: /affiche.jsp ArrayList cannot be resolved to a type 2: pageEncoding="UTF-8"%> 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> Une erreur s'est produite à la ligne: 5 dans le fichier jsp: /affiche.jsp individus cannot be resolved to a type 2: pageEncoding="UTF-8"%> 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> Une erreur s'est produite à la ligne: 6 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> 9: <%@page import="java.io.IOException;"%> Une erreur s'est produite à la ligne: 6 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> 9: <%@page import="java.io.IOException;"%> Une erreur s'est produite à la ligne: 6 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> 9: <%@page import="java.io.IOException;"%> Une erreur s'est produite à la ligne: 6 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> 9: <%@page import="java.io.IOException;"%> Une erreur s'est produite à la ligne: 6 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> 9: <%@page import="java.io.IOException;"%> Une erreur s'est produite à la ligne: 6 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> 9: <%@page import="java.io.IOException;"%> Une erreur s'est produite à la ligne: 6 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> 9: <%@page import="java.io.IOException;"%> Une erreur s'est produite à la ligne: 6 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> 9: <%@page import="java.io.IOException;"%> Une erreur s'est produite à la ligne: 6 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> 9: <%@page import="java.io.IOException;"%> Une erreur s'est produite à la ligne: 6 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> 9: <%@page import="java.io.IOException;"%> Une erreur s'est produite à la ligne: 6 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> 9: <%@page import="java.io.IOException;"%> Une erreur s'est produite à la ligne: 6 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> 9: <%@page import="java.io.IOException;"%> Une erreur s'est produite à la ligne: 6 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> 9: <%@page import="java.io.IOException;"%> Une erreur s'est produite à la ligne: 6 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> 9: <%@page import="java.io.IOException;"%> Une erreur s'est produite à la ligne: 6 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> 9: <%@page import="java.io.IOException;"%> Une erreur s'est produite à la ligne: 6 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> 9: <%@page import="java.io.IOException;"%> Une erreur s'est produite à la ligne: 6 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> 9: <%@page import="java.io.IOException;"%> Une erreur s'est produite à la ligne: 6 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> 9: <%@page import="java.io.IOException;"%> Une erreur s'est produite à la ligne: 6 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 3: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4: <% 5: ArrayList<individus> ind = (ArrayList<individus>) request.getAttribute("ind"); 6: %> 7: <%@page import="java.util.ArrayList"%> 8: <%@page import="individus"%> 9: <%@page import="java.io.IOException;"%> Une erreur s'est produite à la ligne: 34 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 31: out.println("<td>"+ind.get(i).getEmail()+"</td>"); 32: out.println("</tr>"); 33: } 34: %> 35: </table> 36: </body> 37: </html> Une erreur s'est produite à la ligne: 34 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 31: out.println("<td>"+ind.get(i).getEmail()+"</td>"); 32: out.println("</tr>"); 33: } 34: %> 35: </table> 36: </body> 37: </html> Une erreur s'est produite à la ligne: 34 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 31: out.println("<td>"+ind.get(i).getEmail()+"</td>"); 32: out.println("</tr>"); 33: } 34: %> 35: </table> 36: </body> 37: </html> Une erreur s'est produite à la ligne: 34 dans le fichier jsp: /affiche.jsp The method write(String) is undefined for the type JspWriter 31: out.println("<td>"+ind.get(i).getEmail()+"</td>"); 32: out.println("</tr>"); 33: } 34: %> 35: </table> 36: </body> 37: </html> An error occurred at line: 84 in the generated java file Throwable cannot be resolved to a type An error occurred at line: 85 in the generated java file t cannot be resolved An error occurred at line: 89 in the generated java file t cannot be resolved Stacktrace: org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:93) org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:330) org.apache.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:435) org.apache.jasper.compiler.Compiler.compile(Compiler.java:298) org.apache.jasper.compiler.Compiler.compile(Compiler.java:277) org.apache.jasper.compiler.Compiler.compile(Compiler.java:265) org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:564) org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:302) org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329) org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265) javax.servlet.http.HttpServlet.service(HttpServlet.java:803) testMySQL.doGet(testMySQL.java:39) javax.servlet.http.HttpServlet.service(HttpServlet.java:690) javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
cette servlet s'appuies sur deux classes individus et individusDAO dont voici les codes respectifs :
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
46import java.io.IOException; import java.util.ArrayList; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class testMySQL extends HttpServlet { private String jspAffiche = null; private String jspErreur = null; private String msgErreur = null; private ArrayList<individus> ind = null; private individusDAO indi = null; public void doGet (HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { jspAffiche = getInitParameter("jspAffiche"); jspErreur = getInitParameter("jspErreur"); if (jspAffiche == null || jspErreur == null){ msgErreur = "Configuration incorrecte"; request.setAttribute("msgErreur", msgErreur); request.getRequestDispatcher(jspErreur).forward(request, response); return; } try { ind = indi.chargeInd(); } catch (Exception e) { msgErreur = e.getMessage(); } if (msgErreur != null) { request.setAttribute("msgErreur", msgErreur); request.getRequestDispatcher(jspErreur).forward(request, response); return; } else { request.setAttribute("ind", ind); request.getRequestDispatcher(jspAffiche).forward(request, response); } } public void doPost (HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { doGet(request, response); } }
individus :
individusDAO :
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 public class individus { private int matricule = 0; private String nom = null; private String prenom = null; private int age = 0; private String email = null; public int getMatricule() { return this.matricule; } public String getNom() { return this.nom; } public String getPrenom() { return this.prenom; } public int getAge() { return this.age; } public String getEmail() { return this.email; } public void setMatricule(int mat) { this.matricule = mat; } public void setNom(String name) { this.nom = name; } public void setPrenom(String firstname) { this.prenom = firstname; } public void setAge(int age) { this.age = age; } public void setEmail (String mail) { this.email = mail; } }
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 import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.util.ArrayList; import com.mysql.jdbc.ResultSet; import com.mysql.jdbc.Statement; public class individusDAO { individus indi = null; ArrayList<individus> ind = null; Connection conn = null; Statement stmt = null; ResultSet rs = null; public ArrayList<individus> chargeInd() throws SQLException { try { Class.forName("com.mysql.jdbc.Driver").newInstance(); conn = DriverManager.getConnection("localhost", "root", "karine"); stmt = (Statement) conn.createStatement(); rs = (ResultSet) stmt.executeQuery("select matricule, nom, prenom, age, email from Individus"); while(rs.next()){ indi.setMatricule(Integer.parseInt(rs.getString("matricule"))); indi.setNom(rs.getString("nom")); indi.setPrenom(rs.getString("prenom")); indi.setAge(Integer.parseInt(rs.getString("age"))); indi.setEmail(rs.getString("email")); ind.add(indi); } } catch (Exception e){} finally { rs.close(); stmt.close(); conn.close(); } return this.ind; } }
Partager