<%@ page contentType="text/html;charset=UTF-8" language="java" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %> <html> <head> </head> <body> <ul> <c:forEach items="${films}" var="pelicula"> <li>${pelicula.title}</li> <li>${pelicula.description}</li><br> </c:forEach> </ul> </body> </html>