Using TagLibraries in Tomcat, Where should I include the taglibrarydescriptor files (.tld file)?
Created May 4, 2012
This structure is important if you would like to create a jar file containing all your tags, that is very useful when you have multiple tags coming from multiple sources, because you can specify the different libraries in your jsp pages like this:
<%@ taglib uri="/WEB-INF/lib/kzmCommonTags.jar" prefix="kCommon" %>
<%@ taglib uri="/WEB-INF/lib/kzmMyPhotos-tags.jar" prefix="kMP" %>
<%@ taglib uri="/WEB-INF/myTags.tld" prefix="myTags" %>