Lepší chybová hláška při špatně vyplněném formuláři pro přidání podniku.
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"
4 xmlns:fmt="http://java.sun.com/jsp/jstl/fmt"
5 xmlns:fn="http://java.sun.com/jsp/jstl/functions"
8 <jsp:useBean id="podnik" class="cz.frantovo.nekurak.dto.Podnik" scope="request"/>
9 <jsp:useBean id="pridatPodnik" class="cz.frantovo.nekurak.web.PridatPodnik" scope="request"/>
11 <h1><fmt:message key="pridatPodnik.nadpis"/></h1>
14 <c:when test="${param.akcePridat == 'pridej'}">
15 <c:catch var="pridatPodnikChyba">
16 <jsp:setProperty name="podnik" property="*"/>
17 <jsp:setProperty name="pridatPodnik" property="podnik" value="${podnik}"/>
18 <c:set var="pridatPodnikOK" value="${pridatPodnik.pridano}"/>
21 <c:when test="${pridatPodnikChyba == null}">
22 <p><fmt:message key="pridatPodnik.bylPridan"/></p>
25 <p class="chybovaHlaska"><fmt:message key="pridatPodnik.nebylPridan"/></p>
30 <form method="post" action="?akce=pridatPodnik&amp;akcePridat=pridej">
32 <label><fmt:message key="dto.podnik.nazev"/>: <input type="text" name="nazev" maxlength="255"/></label><br/>
33 <label><fmt:message key="dto.podnik.popis"/>: <input type="text" name="popis" maxlength="255"/></label><br/>
34 <fmt:message key="dto.podnik.url.tip" var="urlTip"/>
35 <label title="${urlTip}"><fmt:message key="dto.podnik.url"/>: <input type="text" name="url" maxlength="255"/></label><br/>
36 <label><fmt:message key="dto.podnik.ulice"/>: <input type="text" name="ulice" maxlength="64"/></label><br/>
37 <fmt:message key="dto.podnik.cisloPopisne.tip" var="cisloPopisneTip"/>
38 <label title="${cisloPopisneTip}"><fmt:message key="dto.podnik.cisloPopisne"/>: <input type="text" name="cisloPopisne" maxlength="5"/></label><br/>
39 <label><fmt:message key="dto.podnik.mesto"/>: <input type="text" name="mesto" maxlength="64"/></label><br/>
40 <button value="submit"><fmt:message key="pridatPodnik.tlacitko"/></button>