INF « Tag « JSP-Servlet Q&A





1. Jsp tags outside WEB-INF/tags    stackoverflow.com

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 ...

2. WEB-INF content access in another war    stackoverflow.com

I have three war files (War-Common, War-Physical, War-Derivatives) and we are packaging them in an EAR file. I am able to access content (Images, CSS, JavaScripts etc.) of War-Common in War-Physical ...

3. eclipse complains: Can not find the tag directory "/WEB-INF/tags/" but it really does exist    stackoverflow.com

I have a Maven2 web module as an Eclipse project (more specifically, SpringSource Tool Suite 2.6). I have a hello.tag in src/main/webapp/WEB-INF/tags. It's just this:

<%@ tag language="java" pageEncoding="ISO-8859-1"%>
Hello World!
I ...

4. Have a JSP tag inside a Jar instead of WEB-INF/tags    stackoverflow.com

Is it possible to have tag files (sample.tag) inside a jar archive instead of the WEB-INF of the .war archive? I want to re-use a tag file in multiple web-apps without having ...