exception création d'un bean
Bonjour
Je débute en Java coté web (j'ai fait beaucoup de clients lourds en java... mais faut bien passer au web). Je suis divers tuto.
J'ai une exception que je ne comprends pas à la création du bean :
Code:
1 2 3 4 5 6 7 8 9 10 11 12
| <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@page import="java.util.ArrayList"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<jsp:useBean id="list" class="ArrayList" scope="session"></jsp:useBean>
... |
et voici l'exception :
Code:
1 2 3 4 5 6 7 8
| 13 janv. 2009 09:06:47 org.apache.catalina.core.StandardWrapperValve invoke
GRAVE: "Servlet.service()" pour la servlet jsp a généré une exception
org.apache.jasper.JasperException: /Man/ManList.jsp(11,0)
at org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:40)
at org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:407)
at org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:148)
at org.apache.jasper.compiler.Generator$GenerateVisitor.visit(Generator.java:1178)
... |
Il ne me semble pas que ca vienne de la déclaration (quoique...)
Est ce que qq un a une idée ?
merci a bientôt