Voilà, je suis en train de faire ce simple tutorial qui jusqu'à présent allait plutot bien
http://static.springsource.org/doc [...] index.html
voila à la fin du chapitre 4, ca ne fonctionne pas. On dirait qu'il ne trouve pas mal taglib spring-form.tld
dans mon web.xml, j'ai bien
Code :
- <jsp-config>
- <taglib>
- <taglib-uri>/spring</taglib-uri>
- <taglib-location>/WEB-INF/tld/spring-form.tld</taglib-location>
- </taglib>
- </jsp-config>
|
dans mon jsp
Code :
- <%@ include file="/WEB-INF/jsp/include.jsp" %>
- <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
- <html>
- <head>
- <title><fmt:message key="title"/></title>
- <style>
- .error { color: red; }
- </style>
- </head>
- <body>
- <h1><fmt:message key="priceincrease.heading"/></h1>
- <form:form method="post" commandName="priceIncrease">
- <table width="95%" bgcolor="f8f8ff" border="0" cellspacing="0" cellpadding="5">
- <tr>
- <td align="right" width="20%">Increase (%):</td>
- <td width="20%">
- <form:input path="percentage"/>
- </td>
- <td width="60%">
- <form:errors path="percentage" cssClass="error"/>
- </td>
- </tr>
- </table>
- <br>
- <input type="submit" align="center" value="Execute">
- </form:form>
- <a href="<c:url value="hello.htm"/>">Home</a>
- </body>
- </html>
|
dans mon projet
WebContent/WEB-INF
WebContent/WEB-INF/jsp
WebContent/WEB-INF/jsp/hello.jsp
WebContent/WEB-INF/jsp/include.jsp
WebContent/WEB-INF/jsp/priceincrease.jsp
WebContent/WEB-INF/lib
WebContent/WEB-INF/tld
WebContent/WEB-INF/sping-form.tld
WebContent/WEB-INF/messages.properties
WebContent/WEB-INF/springapp-servlet.xml
WebContent/WEB-INF/web.xml
WebContent/index.jsp
et mon exception...