films.jsp 439 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<%@ 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>