salut,
j'ai une application web avec éclipse et Tomcat
l'erreur suivante est apparu
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
 
org.apache.jasper.JasperException: /WEB-INF/vues/list.jsp(24,1) D'après la TLD, l'attribut items n'accepte aucune expression
voici mon fichier list.jsp
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
 
<%@ page language="java" pageEncoding="ISO-8859-1" contentType="text/html;charset=ISO-8859-1"%>
<%@ taglib uri="/WEB-INF/c.tld" prefix="c" %>
 <html>
 	<head>
 		<title>Rapport -- MSC-GOS</title>
 </head>
 
 <h2>MSC-GOS</h2>
 <table border="1">
 <tr>
 <th>MSC</th>
 <th>Date</th>
 <th>Time</th>
 <th>MMC_SR%</th>
 <th>MOC_SR%</th>
 <th>LUP_SR%</th>
 <th>HOSUCC%</th>
 <th>PAGING_SR%</th>
 <th>CP_LOAD%</th>
 <th>MOSMSUCC%</th>
 <th>MTSMSUCC%</th>
 <th></th>
 </tr>
 <c:forEach var="variable" items="${Kpimscgos}">
 <tr>
 <td><c:out value="${variable.msc}"/></td>
 <td><c:out value="${variable.date}"/></td>
 <td><c:out value="${variable.temps}"/></td>
 <td><c:out value="${variable.MMC}"/></td>
 <td><c:out value="${variable.MOC}"/></td>
 <td><c:out value="${variable.MTC}"/></td>
 <td><c:out value="${variable.LUP}"/></td>
 <td><c:out value="${variable.HOSUCC}"/></td>
 <td><c:out value="${variable.PAGING}"/></td>
 <td><c:out value="${variable.CP}"/></td>
 <td><c:out value="${variable.MOSMSUCC}"/></td>
 <td><c:out value="${variable.MTSMSUCC}"/></td>
 </tr>
 </c:forEach>
 </table>
 </body>
 </html>