Přechod na EAR, EJB.
1 <?xml version="1.0" encoding="UTF-8"?>
2 <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
3 xmlns:c="http://java.sun.com/jsp/jstl/core"
5 <jsp:directive.page contentType="application/xhtml+xml"/>
6 <jsp:output doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
7 doctype-root-element="html"
8 omit-xml-declaration="false"/>
10 <html xmlns="http://www.w3.org/1999/xhtml">
12 <title>SpringDemo1</title>
17 <p>Vypíšeme seznam knih:</p>
19 <jsp:useBean id="demo" class="cz.frantovo.springDemo1.web.SpringDemo1Bean" scope="request"/>
21 <c:forEach var="kniha" items="${demo.knihy}">
22 <li><c:out value="${kniha.nazev}"/></li>