Reputation: 23
Eclipse had this compilation error:
Unknown tag (fmt:formatNumber)
<fmt:formatNumber value="${product.price}" type="currency" currencyCode="USD" /></td>
Upvotes: 1
Views: 2871
Reputation: 81
Add this to the top of jsp page.
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
Upvotes: 4