<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
If you see the error Can not find the tag library descriptor for “http://java.sun.com/jsp/jstl/core” — which I encountered while going through a Spring MVC and JSTL/JSP tutorial — to fix this you need to reference the JSTL jar in your project. If you are using maven, download the jar file file maven central by adding this to your maven dependencies:
javax.servlet jstl 1.2
You can also grap the jar files from java.dev.net
