Reputation: 31
<c:url var="addAction" value="/user/add"></c:url>
warning:The tag handler class for "c:url" (org.apache.taglibs.standard.tag.rt.core.UrlTag) was not found on the Java Build Path
I have included the JSTL
jar but still it gives same warning.
Is any other jar required?
Upvotes: 3
Views: 5293
Reputation: 37
Did you include the jar files into the correct directory?
They need to be stored in the lib folder in WEB-INF
(...WebContent/WEB-INF/lib/
).
You may have just stored them in the WEB-INF
folder.
Upvotes: 0