eclipse 项目编译时报 Feature 'taglib' not found 错误
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> 来源: CSDN 作者: Atm猿 链接: https://blog.csdn.net/qq_39539346/article/details/103493126