[SOLVED ] JSLT - Formatar a data na tabela

Boa tarde!

Estou tentando alterar o formato data na tabela, mas tentei fazer abaixo e aparece o erro a mensagem.

</html><%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<%@page import="java.text.SimpleDateFormat" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!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=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<!--  cria o DAO -->
<jsp:useBean id="dao" class="br.com.caelum.agenda.dao.ContatoDao">
<table align='center' cellspacing=2 cellpadding=5 border=1>
 
<tr>
<th>ID</th>
<th>Nome</th>
<th>Email</th>
<th>Endereço</th>
<th>Data de Nascimento</th>
</tr>
<!-- percorre contatos montando as linhas da tabela -->
<c:forEach var="contato" items="${dao.lista}">
<tr>
<td>${contato.id }</td>
<td>${contato.nome }</td>
<td>${contato.email }</td>
<td>${contato.endereco }</td>
  <c:set var = "now" value = ${contato.dataNascimento.time } />
  <fmt:parseDate value = "${now}" var = "parsedEmpDate" pattern = "dd-MM-yyyy" />
<td><c:out value = "${parsedEmpDate}" /></td>
</tr>
</c:forEach>
</table>
</jsp:useBean>

</body>
</html>

Me da help! :frowning:

Opa, agora achei o erro! Resolvido!