declare JSP taglib directives in web.xml - Stack Overflow [closed] most recent 30 from stackoverflow.com 2010-03-11T14:00:31Z http://stackoverflow.com/feeds/question/226514 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/226514/declare-jsp-taglib-directives-in-web-xml 0 declare JSP taglib directives in web.xml [closed] Don http://stackoverflow.com/users/2648 2008-10-22T16:11:20Z 2008-10-23T03:27:21Z <p>Hi,</p> <p>I seem to remember reading that it's possible to declare taglib directives such as:</p> <pre><code>&lt;%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %&gt; </code></pre> <p>in web.xml. This eliminates the need to duplicate this directive in every JSP file where the taglib is used. Could someone tell me <em>how</em> these directives can be added to web.xml?</p> <p>Cheers, Don</p> http://stackoverflow.com/questions/226514/declare-jsp-taglib-directives-in-web-xml/226585#226585 3 Answer by David M. Karr for declare JSP taglib directives in web.xml David M. Karr http://stackoverflow.com/users/10508 2008-10-22T16:31:44Z 2008-10-22T16:31:44Z <p>Sorry, you're slightly mistaken. If a page uses a taglib, you have to have a taglib directive for it on the page. You could place the common taglib directives in an include file that all of your pages include with an include directive, but at compile time the taglib directive has to be there.</p> <p>I prefer to NOT have the taglib elements in the web.xml, and instead have the taglib directive specify the URI value that is used in the "uri" element in the TLD that is inside the taglib jar file in your WEB-INF/lib.</p> http://stackoverflow.com/questions/226514/declare-jsp-taglib-directives-in-web-xml/228430#228430 2 Answer by Athena for declare JSP taglib directives in web.xml Athena http://stackoverflow.com/users/17846 2008-10-23T03:21:52Z 2008-10-23T03:27:21Z <p>The <code>taglib</code> element in web.xml serves a different purpose to the <code>taglib</code> directive which you have above.</p> <p>As David said, the <code>taglib</code> directive is required on each page.</p> <p>If you have many pages which use common taglibs, you can shortcut this by putting the taglib directives into an include file, and including this file each page. But no matter how you do it, the taglib directive has to be on the page somehow.</p> <p>That tag you need to include on each page looks like this:</p> <pre><code>&lt;%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %&gt; </code></pre> <p>If you have a custom taglib in a custom location, you can also specify a location relative to the webapp root:</p> <pre><code> &lt;%@ taglib prefix="ex" uri="/taglib.tld" %&gt; </code></pre> <p><a href="http://java.sun.com/products/jsp/syntax/1.2/syntaxref1211.html" rel="nofollow">Further reading on the taglib directive</a></p> <p>The <code>taglib</code> directive from web.xml maps tag uris to the physical location of your taglib. It is optional since JSP 2.0, as compliant containers will look in a set of standard locations to try to auto-discover the taglib: /WEB-INF and its subdirectories, /META-INF as well for JAR files.</p> <p>It looks like this, in web.xml:</p> <pre><code>&lt;taglib&gt; &lt;taglib-uri&gt; http://www.example.com/taglib &lt;/taglib-uri&gt; &lt;taglib-location&gt; /taglib.tld &lt;/taglib-location&gt; &lt;/taglib&gt; </code></pre> <p>And the taglib is referenced in the JSP page like this (the taglib directive on each page is unavoidable!):</p> <pre><code>&lt;%@ taglib prefix="ex" uri="http://www.example.com/taglib" %&gt; </code></pre> <p>This is equivalent to the second example I gave for the taglib directive above. The biggest difference is in how you point to the taglib location. </p> <p><a href="http://wiki.metawerx.net/wiki/Web.xml.TagLib" rel="nofollow">This page</a> contains a bit more information.</p>