Which jstl url should I reference in my jsps? - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T17:15:38Zhttp://stackoverflow.com/feeds/question/43809http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/43809/which-jstl-url-should-i-reference-in-my-jsps4Which jstl url should I reference in my jsps?ScArcher22008-09-04T13:57:15Z2008-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><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
</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#438725Answer by Georgy Bolyuba for Which jstl url should I reference in my jsps?Georgy Bolyuba2008-09-04T14:28:30Z2008-09-04T14:28:30Z<p>Go with </p>
<pre><code><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
</code></pre>
<p>More on this topic <a href="http://faq.javaranch.com/view?JstlTagLibDefinitions" rel="nofollow">here</a></p>