问一个关于JSP中引入标签库的问题
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
这句话写到jsp文件里,为什么显示错误,错误原因是:Can't find the tag library descriptor for "http://struts.apache.org/tags-logic",如果要用logic标签库,该怎么引入呢?
[解决办法]
jar 没引入。你按住ctrl 然后鼠标移到uri看是否会出现链接。
[解决办法]
<taglib>
<taglib-uri>http://struts.apache.org/tags-logic</taglib-uri>
<taglib-location>/WEB-INF/tld/xx.tld</taglib-location>
</taglib>
<taglib-location>/WEB-INF/tld/xx.tld</taglib-location>改成你自己的struts标签的路径了吗?。。
<taglib>
<taglib-uri>http://struts.apache.org/tags-logic</taglib-uri>
<taglib-location>/WEB-INF/tld/xx.tld</taglib-location>
</taglib>
web.xml来个
把这段代码放到web.xml里直接报错了。。。
本地都没有/WEB-INF/tld这个目录。。。
没有当然会报错,可以参考7楼 <taglib-location>/WEB-INF/tld/xx.tld</taglib-location>改成你自己的struts标签的路径了吗?。。
<taglib>
<taglib-uri>http://struts.apache.org/tags-logic</taglib-uri>
<taglib-location>/WEB-INF/tld/xx.tld</taglib-location>
</taglib>
web.xml来个
把这段代码放到web.xml里直接报错了。。。
本地都没有/WEB-INF/tld这个目录。。。
只差jakarta-oro.jar,但是这个包是无关紧要的啊,我是在MyEclipse下直接添加的SSH框架支持,没有自己去配置。