java Eclipse刷新报错 Feature 'taglib' not found.


刷新工程报错:org.eclipse.emf.ecore.xmi.FeatureNotFoundException: Feature 'taglib' not found.

错误原因:tomcat7,部署tomcat6下开发的项目。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>

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM