W
WJ
I just installed tomcat 5 (5.0.27) and am deploying a simple app. The jsp's
are erroring out saying it cannot find the tag libs defined.
Here is how I am including the tags at the top of the JSP's:
<%@ taglib uri="/tlds/struts-html.tld" prefix="html" %>
<%@ taglib uri="/tlds/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/tlds/struts-tiles.tld" prefix="tiles" %>
<%@ taglib uri="/tlds/struts-logic.tld" prefix="logic" %>
My entries in web.xml are thus:
<taglib>
<taglib-uri>/tags/struts-bean</taglib-uri>
<taglib-location>WEB-INF/tlds/struts-bean.tld</taglib-location>
</taglib>
are erroring out saying it cannot find the tag libs defined.
Here is how I am including the tags at the top of the JSP's:
<%@ taglib uri="/tlds/struts-html.tld" prefix="html" %>
<%@ taglib uri="/tlds/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/tlds/struts-tiles.tld" prefix="tiles" %>
<%@ taglib uri="/tlds/struts-logic.tld" prefix="logic" %>
My entries in web.xml are thus:
<taglib>
<taglib-uri>/tags/struts-bean</taglib-uri>
<taglib-location>WEB-INF/tlds/struts-bean.tld</taglib-location>
</taglib>