TldLocationsCache: null - 在 tomcat6 上导入 taglib
我收到臭名昭著的 TldLocationsCache: null。 :-(
我的 taglib 位于我的 jar 的 META-INF 中。所以在我的 web.xml 中我这样做:
<jsp-config>
<taglib>
<taglib-uri>myTags</taglib-uri>
<taglib-location>/WEB-INF/lib/myTagLib-2.0.0.jar</taglib-location>
</taglib>
</jsp-config>
在我的 JSP 上:
<%@ taglib uri="myTags" prefix="m" %>
但是然后我得到:
org.apache.jasper.JasperException: Unable to initialize TldLocationsCache: null
org.apache.jasper.compiler.TldLocationsCache.init(TldLocationsCache.java:248)
org.apache.jasper.compiler.TldLocationsCache.getLocation(TldLocationsCache.java:219)
org.apache.jasper.JspCompilationContext.getTldLocation(JspCompilationContext.java:553)
我正在运行 Tomcat6。任何帮助将不胜感激。谢谢!
I am getting the infamous TldLocationsCache: null. :-(
My taglib is inside the META-INF of my jar. So in my web.xml I do:
<jsp-config>
<taglib>
<taglib-uri>myTags</taglib-uri>
<taglib-location>/WEB-INF/lib/myTagLib-2.0.0.jar</taglib-location>
</taglib>
</jsp-config>
And on my JSP:
<%@ taglib uri="myTags" prefix="m" %>
But then I get:
org.apache.jasper.JasperException: Unable to initialize TldLocationsCache: null
org.apache.jasper.compiler.TldLocationsCache.init(TldLocationsCache.java:248)
org.apache.jasper.compiler.TldLocationsCache.getLocation(TldLocationsCache.java:219)
org.apache.jasper.JspCompilationContext.getTldLocation(JspCompilationContext.java:553)
I am running Tomcat6. Any help will be appreciated. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
应引用.tld
,因此请更改为
tld
文件的路径或类似的内容。这也可能很有用:删除;来自 web.xml
<taglib-location>
should refer to the.tld
, so changeto
or something similar with the path of the
tld
file.This could be also useful: Removing <taglib> from web.xml