tags:

views:

279

answers:

2

Is there any way to hold tag files out of /WEB-INF/tags folder? Maybe by using tld somehow and calling them with uri instead of tagdir?

Reason for this request is that we are trying to run several sites from one codebase and we would like to have it like WEB-INF/site1/templates, tags, ... so if this is wrong idea to begin with, feel free to say so.

+1  A: 

Apparently not: http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JSPTags6.html even if using tld to say where the tag is, it can be either in WEB-INF/tags or META-INF/tags for tags packed in jars.

Slartibartfast
+1  A: 

The standard way to deliver taglib is to pack all your tags in a jar and have the TLDs in the jar also in this directory,

  META-INF/tld/

When container starts up, it will scan all the jars for TLD so it knows where to find the tags. You simply use URL to refer to the tags. That's how JSTL works.

ZZ Coder