码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2016-04-18 20:45:14      阅读:1254      评论:0      收藏:0      [点我收藏+]

标签:

刷新工程报错: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>

 

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

标签:

原文地址:http://www.cnblogs.com/hehongtao/p/5405605.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!