eclipse中在web.xml中添加taglib报错
在web.xml中设置strut标签,如下:<!-- 添加标签 -->
<taglib> <!-- 如果你用eclipse开发项目,你就会发现,这里报错 -->
<taglib-uri>/tags/struts-menu</taglib-uri>
<taglib-location>/WEB-INF/struts-menu.tld</taglib-location>
</taglib>
解决方法其实很简单,方法如下:
将<taglib>标签放在<jsp-config></jsp-config>中间,也就是说,会变成下面的形式:
<!-- 添加标签 -->
<jsp-config>
<taglib>
<taglib-uri>/tags/struts-menu</taglib-uri>
<taglib-location>/WEB-INF/struts-menu.tld</taglib-location>
</taglib>
</jsp-config>
页:
[1]