Não consigo listar todos objetos, "Spring MVC"

estou estudando Spring mvc e já consigo persistir, agora não estou conseguindo deletar.
Ao tentar acessar a pagina, ele não está listando. Segue meu codigo

Tentei pelo menos mostra um campo, mais ele só mostra a tabela sem nenhum registro.

@RequestMapping("listarTarefas")
	public String lista(Model model){
		
		try {
			Connection conn = new ConnectionFactory().getConnection();
			TarefaDAO dao = new TarefaDAO(conn);
			List<Tarefa> tarefas = dao.lista();
			model.addAttribute("tarefas", tarefas);
			
			return "tarefa/lista-tarefas";
		} catch (Exception e) {
			throw new RuntimeException(e);
		}
		
	}

DAO

	public List<Tarefa> lista()
{
	String sql = "select * from tarefas";
	
	try{
		PreparedStatement prepareStatement = conn.prepareStatement(sql);
		
		ResultSet resultSet = prepareStatement.executeQuery();
		
		while(resultSet.next()){
			Tarefa tarefa = new Tarefa();
			
			tarefa.setId(resultSet.getLong("id"));
			tarefa.setFinalizado(resultSet.getBoolean("finalizado"));
			tarefa.setDescricao(resultSet.getString("descricao"));
			
			if(resultSet.getDate("data_finalizacao") != null){
				Calendar calendar = Calendar.getInstance();
				calendar.setTime(resultSet.getDate("data_nascimento"));
				tarefa.setDataFinalizacao(calendar);
			}
		}
		prepareStatement.close();
		conn.close();
		return this.tarefas;
	}catch (SQLException e) {
		throw new RuntimeException(e);
	}
	
}

View

<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Tarefa adicionada com sucesso</title>
</head>
<body>
	
	<a href="formulario"> Novo formulário?</a>
	
	<br /><br />
	
	<table>
		<tr>
			<th>ID</th>
			<th>descricao</th>
			<th>finalizado?</th>
			<th>Data de Finalização</th>
		</tr>
		<c:forEach items="${tarefas}" var="tarefa">
		<tr>
			<td>${tarefa.id}</td>
		</tr>
		</c:forEach>
	</table>
</body>
</html>

Observação: Ao tentar atualizar a pagina, só imprimi isso no Console

Mon May 01 16:58:23 BRT 2017 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.

resolvido