我已经用 maven 构建了我的项目所有构建都成功并且 eclipse 属性生成也成功
但是当我在 Eclipse 4 中打开项目时,我收到了这个错误
An internal error occurred during: "Loading descriptor for SALYExplorer.".
org.eclipse.emf.ecore.xmi.FeatureNotFoundException: Feature 'taglib' not found. (platform:/resource/SALYExplorer/src/main/webapp/WEB-INF/web.xml, 313, 10)
在那个位置我有一些属性
虽然项目运行顺利,一切都很好,只是在导航窗格中浏览项目时,Eclipse 总是抛出这个错误框(很烦人)。
该位置的代码
<taglib>
<taglib-uri>xx.tld</taglib-uri>
<taglib-location>/WEB-INF/tld/xx.tld</taglib-location>
</taglib>
和 xx 定义 int 它的文件
<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
"http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_2.dtd">
<taglib>
<tlib-version>1.0</tlib-version>
<jsp-version>1.2</jsp-version>
.........
</taglib>