Olá senhores,estou aprendendo java web, não estou sabendo resolver um erro que aparece no exemplo,
será que poderiam me ajudar?
O codigo todo está ai e a linha com o erro esta em destaque.
<%--
Document : FormAtuAutor
Created on : 30/07/2009, 16:54:18
Author : robertob
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<jsp:useBean id="autor" scope="session" class="br.com.oriom.beans.Autor" />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Atualiza cadastro</title>
</head>
<body>
<form action="ServeletAutores?cmd=atualizar" method="POST">
<table>
<tr>
<td>ID:</td>
<td>
<input type="text" name="id" value="${autor.id}" readonly="readonly" />
</td>
</tr>
<tr>
<td>Nome:</td>
<td>
<input type="text" name="nome" value="${autor.nome}">
</td>
</tr>
<tr>
<td>Email:</td>
<td>
<input type="text" name="email" value="${autor.email}">
</td>
</tr>
<tr>
<td>Nascimento:</td>
<td>
[color=red] <input type="text" name="nascimento" value="<fmt:formatDate value="${autor.data}" type="DATE" pattern="dd/MM/yyyy"> "/> [/color] //erro aqui
</td>
</tr>
<tr>
<td colspan="2">
<input type="submit" name="btAtualizar" value="Atualizar">
</td>
</tr>
</table>
</form>
</body>
</html>