I would like to split my Spring/JSP/Maven/Tomcat webapp project to few different ones. So, each of them will act as a stand alone web application. Now, I want to use the same custom JSP tags in all the projects, but I don't want to copy the WEB-INF/tag folder everywhare. How can I have it defined in a shared project and reuse it in all dependent projects?
Reusing custom JSP tags
313 Views Asked by Mihajlo Brankovic At
2
There are 2 best solutions below
0

I did this by putting the tld in the src/main/java/META-INF folder of the common project.
e.g. common.tld
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"
"http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
<taglib>
<tlibversion>1.0</tlibversion>
<jspversion>1.1</jspversion>
<shortname>Custom common Tag Library</shortname>
<uri>http://www.mysite.be/tags/common</uri>
...
Then it the JSP's in the project (that include the shared project):
<%@ taglib prefix="common" uri="http://www.mysite.be/tags/common" %>
Disclaimer: it's been a very long time ago since I did this so I hope I did not forget anything and not sure if this is (still) the best option.
Further to the previous answer and assuming you are using Maven then your Common taglib project should look like:
where the contents of your taglib.tld look like:
and then you can just reference the taglib in dependant projects in the normal way.
See documentation for further guidance:
http://docs.oracle.com/javaee/5/tutorial/doc/bnamu.html#bnana