On 13/03/2011 05:37, Brian Braun wrote:
> <%@ taglib uri=*"/WEB-INF/struts-bean.tld"* prefix=*"bean"*%>
> 
>  That page fails, because it is not being able to find the TLD file anymore.
> 
> What should I do? I really want to get rid of the info messages.
> 
> - Do I need to delete the TLDs from my WEB-INF directory? That makes my JSPs
> fail.
Yes.

> - Do I need to modify the "taglib" directives, so they refer to the TLD
> files inside the JAR or something like that?

Yes. You need to refer to the taglibs in your JSPs using the URI rather
than the file location. e.g.
<%@ taglib uri="http://struts.apache.org/tags-bean"; prefix="bean"%>


> - Do I need to delete the TLD files from the Struts JAR? That wouldn't sound
> OK to me, one should not modify a JAR that comes from a components such as
> Struts.

No.

> - Should I tell Tomcat not to show those info messages somehow?

No.

Mark

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to