Hi,
I am having a problem getting the JSP editor to recognize custom tags in JSPs.
As an example, I have a page that is trying to use the core JSTL tags.
My WEB-INF/lib directory contains:
jstl-1.0.2.jar
standard-1.0.2.jar
The TLDs are in standard-1.0.2.jar.
My WEB-INF/web.xml has the following taglib directives:
<taglib>
<taglib-uri>http://java.sun.com/jstl/core</taglib-uri>
<taglib-location>/WEB-INF/lib/standard-1.0.2.jar</taglib-location>
</taglib>
and finally, my page content of interest:
…
<%@ taglib uri=”http://java.sun.com/jstl/core” prefix=”c” %>
…
<a href=”<c:url value=’/login/password.jsp?goHomeOnCancel=true’/>”> …
The MyEclipse JSP editor is not recognising any of the “c” prefixed tags. I am having similar problems with struts tags as well.
Environment:
Eclipse 3.0M3/MyEclipseIDE 3.6.2
MacOSX 10.2.8
java version “1.4.1_01”
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_01-69.1)
Java HotSpot(TM) Client VM (build 1.4.1_01-24, mixed mode)
Thanks,
Steve Coy