Which jstl url should I reference in my jsps? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T17:15:38Z http://stackoverflow.com/feeds/question/43809 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/43809/which-jstl-url-should-i-reference-in-my-jsps 4 Which jstl url should I reference in my jsps? ScArcher2 2008-09-04T13:57:15Z 2008-09-04T14:28:30Z <p>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.</p> <p>What version of jstl should I use, and which URL goes with which version of jstl?</p> <p>I'm getting this error</p> <p>"According to TLD or attribute directive in tag file, attribute key does not accept any expressions"</p> <pre><code>&lt;%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %&gt; &lt;%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %&gt; </code></pre> <p>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).</p> http://stackoverflow.com/questions/43809/which-jstl-url-should-i-reference-in-my-jsps/43872#43872 5 Answer by Georgy Bolyuba for Which jstl url should I reference in my jsps? Georgy Bolyuba 2008-09-04T14:28:30Z 2008-09-04T14:28:30Z <p>Go with </p> <pre><code>&lt;%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %&gt; </code></pre> <p>More on this topic <a href="http://faq.javaranch.com/view?JstlTagLibDefinitions" rel="nofollow">here</a></p>