I’m working with JSTL in Eclipse, using the WTP. I have jstl and standard.jar in my WEB-INF/lib directory, and everything works. Eclipse is giving me this warning in my JSP:
The TagExtraInfo class for c:forEach (org.apache.taglibs.standard.tei.ForEachTEI) was not found on the build path.
I have JSTL included:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
The warning is on a line that uses a c:forEach. How can I get rid of it?
My project is targeting Tomcat v6.
Eventually, I accidentally double-clicked the warning, and it took me to the source, which was editable. Then I fixed the problem myself.