j2ee: Deploying Tag Libraries [16/27] Previous pageContentsNext page

  1. Put the class files in "doc root"/WEB-INF/classes
  2. Put the tag library descriptor anywhere in the webapp
  3. Edit WEB-INF/web.xml, Add the following to your web.xml after servlet-mappings and session-config, but before resource-ref:

<jsp-config>
    <taglib>
        <taglib-uri>se452-taglib.tld</taglib-uri>
        <taglib-location>/WEB-INF/tld/se452-taglib.tld</taglib-location>
    </taglib>
</jsp-config>

Previous pageContentsNext page