Não consigo carregar a lista na página exemplo.jsp
> package dw1aula07;
>
>
> import java.io.IOException;
>
> import javax.servlet.ServletException;
> import javax.servlet.annotation.WebServlet;
> import javax.servlet.http.HttpServletRequest;
> import javax.servlet.http.HttpServletResponse;
>
>
>
> @SuppressWarnings("serial")
> public class ExemploServlet extends HttpServlet {
>
>
> protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
> String[] filmes = {"Sou mais\"vc\" ","Ironman", "Cap América"};
> request.setAttribute("filmes", filmes);
> request.getRequestDispatcher("exemplo.jsp").forward(request, response);
> }
>
>
> }
exemplo.jsp
> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
>
> <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
> pageEncoding="ISO-8859-1"%>
> <!DOCTYPE html>
> <html>
> <head>
> <meta charset="ISO-8859-1">
> <title>Lista de filmes</title>
> </head>
> <body>
> <strong>Lista de filmes</strong>
> <br/><br/><br/>
> <table border="1">
> <tr>
> <th>filmes </th>
> </tr>
> <c:forEach var="fil" items="${filmes}" >
> <tr>
> <td>
> <input type="text" name="meufilme" value="<c:out value="${fil}" escapeXml="false" ></c:out>" />
> </td>
> </tr>
> </c:forEach>
> </table>
>
> </body>
> </html>