eclipse 项目编译时报 Feature 'taglib' not found 错误

牧云@^-^@ 提交于 2019-12-12 10:42:38

eclipse在项目编译时报如下问题:

经上网查询发现是web.xml里面对<taglib>标签进行校验的原因,处理方法如下:

tomcat7.0前版本web.xml中taglib配置如下:

<taglib>

     <taglib-uri>http://www.krmsoft.com/tags-slsint</taglib-uri>

     <taglib-location>/WEB-INF/slsint.tld</taglib-location>

</taglib>

tomcat7.0后版本taglib配置如下:

<jsp-config>

   <taglib>

        <taglib-uri>http://www.krmsoft.com/tags-slsint</taglib-uri>

        <taglib-location>/WEB-INF/slsint.tld</taglib-location>

    </taglib>

</jsp-config>

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!