Bom dia. Prezados, estou no exercício sobre jsp e jstl. No index.jsp ao imprimir a mensagem Você está logado como ${usuarioLogado.email} esta não sai com as acentuações corretas. Tentei colocar no index.jsp os encondings: UTF-8, UTF-16, ISO-8859-1 e o enconding utilizado pelo windows. Sem êxito. Meu arquivo index.jsp se encontra desta forma: <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
Bem vindo ao nosso gerenciador de empresas! Você está logado como ${usuarioLogado.email}<form action = "novaEmpresa" method="post">
<br />Nome: <input type="text" name = "nome" /><br/><br />
<input type = "submit" value = "Enviar" />
</form>
<form action="login" method="post">
<br />Email: <input type="text" name="email" /><br />
<br />Senha: <input type="password" name="senha" /><br />
<br /><input type="submit" value="Login" />
</form>
<form action="logout" method="post">
<br /><input type="submit" value="Logout" /><br />
</form>
Poderiam verificar onde está o problema?