0
我有一個jsp文件,其中使用了spring標籤。在帶有前綴「c」的標籤庫中定義的無標籤「if」
<%@taglib uri="http://www.springframework.org/tags" prefix="spring"%>
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<c:if test="${!empty employeeList}">
<table class="data">
<tr>
<th>FirstName</th>
<th>LastName</th>
<th>Email</th>
<th>Telephone</th>
<th>Action</th>
</tr>
<c:forEach items="${employeeList}" var="emp">
<tr>
<td>${emp.firstname}</td>
<td>${emp.lastname}</td>
<td>${emp.email}</td>
<td>${emp.telephone}</td>
<td><a href="delete/${emp.id}">Delete</a>|
<a href="update/${emp.id}">Update</a>
</td>
</tr>
</c:forEach>
</table>
</c:if>
它給了我錯誤,我已經提到作爲標題。我在tomcat 7上運行這個代碼,但是如果我在jBoss 7上運行它,我不會得到這個錯誤。這讓我感到非常緊張。請幫助。
可能的重複[jstl標籤不能在jsp文件中工作,在tomcat中出錯7](http://stackoverflow.com/questions/11573725/jstl-cif-tags-not-working-in-jsp-file-getting-error-in-tomcat-7) –
爲什麼有那種錯誤?你沒有提到,我們怎麼能幫助你。你是否在你的POM.xml文件中導入了JSTL? – shark