film_actor.jsp 492 Bytes
Newer Older
Joel Florentin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<%@ 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="${fas}" var="fa">
                <li>${fa.filmId}</li>
                <li>${fa.filmTitle}</li>
                <li>${fa.actorId}</li>
                <li>${fa.actorName}</li>
        </c:forEach>
    </ul>
</body>
</html>