Avinash Choudhary
Avinash Choudhary

Reputation: 31

The tag handler class for "c:url" (org.apache.taglibs.standard.tag.rt.core.UrlTag) was not found on the Java Build Path

<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

Answers (2)

6Nguyen
6Nguyen

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

ManthanB
ManthanB

Reputation: 414

You have to add standard.jar as well.

Upvotes: 1

Related Questions