vote up 4 vote down star

I'm getting the following error when trying to run a jsp. I'm using Tomcat 6.0.18, and I'd like to use the latest version of jstl.

What version of jstl should I use, and which URL goes with which version of jstl?

I'm getting this error

"According to TLD or attribute directive in tag file, attribute key does not accept any expressions"

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>

I'll just say I had this working, but I want to switch the jstl jar file that has the tld files in the jar file. (instead of having to deploy them somewhere in the web application and define the references in web.xml).

flag

1 Answer

vote up 5 vote down check

Go with

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

More on this topic here

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.