DD.
DD.

Reputation: 21971

Custom JSTL TagLib and TomCat Problem

I've just created a custom taglib which runs fine with Jetty. When using TomCat 6.0 I get the following exception:

java.lang.NoClassDefFoundError: javax/servlet/jsp/jstl/sql/Result

Any ideas on how to resolve this issue? I'm using Facelets and JSF 1.2.

Thxs.

Upvotes: 1

Views: 1398

Answers (1)

DD.
DD.

Reputation: 21971

I had to add the following to my pom.xml

javax.servlet jstl 1.2

That fixed the problem. Not sure why it worked on Jetty but not Tomcat.

Upvotes: 2

Related Questions