pessoal, nao consigo usar EL junto com JSTL
ja habilitei no xml e na propria pagina
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1" %>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<%@ page isELIgnored="false"%> //HABILITANDO
<!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>
<jsp:useBean id="bean" class="modelo.Pessoa" />
<jsp:setProperty name="bean" property="*"/>
<table>
<tr>
<th>${bean.nome}</th>
</tr>
<tr>
<td>${bean.senha}</td>
</tr>
<tr>
<td>
<c:forEach var="n" items="${lista}" > NAO ACEITA RUNTIME
<c:out value="n"} />
</c:forEach>
</td>
</tr>
</table>
</body>
</html>