No meu browser, ao acessar a URl declarada no meu controller que exibe as informações na view, não exibe a data de pagamento. Segue .jsp:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<html>
<body>
<table style="height: 10px; width: 775px;" border="1">
<tr>
<th>Código</th>
<th>Descrição</th>
<th>Valor</th>
<th>Tipo</th>
<th>Pagamento realizado?</th>
<th>Data de pagamento</th>
</tr>
<c:forEach items="${listaContas}" var="dadosConta">
<tr>
<td>${dadosConta.id}</td>
<td>${dadosConta.descricao}</td>
<td>${dadosConta.valor}</td>
<td>${dadosConta.tipo}</td>
<td id="tarefa_${dadosConta.id}">
<c:if test="${dadosConta.paga eq false}">
Não
</c:if>
<c:if test="${dadosConta.paga eq true}">
Sim
</c:if>
</td>
<td>
<fmt:formatDate value="${dadosConta.dataPagamento.time}" pattern="dd/MM/yyyy"/>
</td>
</tr>
</c:forEach>
</table>
</body>
</html>
valeu pela ajuda!