找不到“http://struts.apache.org/tags-bean”的标签库描述符
我已将所有 tld 放在正确的位置并检查了所有设置,但我仍然在同一口井中。
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
I have placed all tld on proper place and checked all setting, still I am in same well.
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
Can not find the tag library descriptor for "http://struts.apache.org/tags-bean"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能尚未将标记库包含在 lib 文件夹中的库集中。
struts-taglib-1.3.10.jar。
You might not have included the tag library in the set of libraries in the lib folder.
struts-taglib-1.3.10.jar.
你也可以这样写
<%@taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
我认为这就是解决方案
you can write like this also
<%@taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
i think this is the solution