jeudi 9 avril 2015

org.apache.jasper.JasperException: File "/WEB-INF/spring-form.tld" not found

hi I am using Spring mvc, servlet, jsp, oracle i am getting this error:'org.apache.jasper.JasperException: File "/WEB-INF/spring-form.tld" not found' can anybody tell me how to fix this my jsp page looks like


ContactForm.jsp





<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="form" uri="http://ift.tt/IED0jK"%>
<%@ taglib prefix="fmt" uri="http://ift.tt/1bRkrVx" %> --%>



<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://ift.tt/kTyqzh">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>

<div align="center">
<h1>New/Edit Contact</h1>
<form:form action="saveContact" method="post" modelAttribute="contact">
<table>
<form:hidden path="id"/>
<tr>
<td>Name:</td>
<td><form:input path="name" /></td>
</tr>
<tr>
<td>Email:</td>
<td><form:input path="email" /></td>
</tr>
<tr>
<td>Address:</td>
<td><form:input path="address" /></td>
</tr>
<tr>
<td>Telephone:</td>
<td><form:input path="telephone" /></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" value="Save"></td>
</tr>
</table>
</form:form>
</div>
</body>
</html>



Aucun commentaire:

Enregistrer un commentaire