`
流浪鱼
  • 浏览: 1682132 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

tomcat 7: IllegalArgumentException: taglib definition not consistent with specif

 
阅读更多

今天在tomcat7引入taglib标签的时候老报 IllegalArgumentException: taglib definitionnotconsistentwithspecificationversion错误,经过查阅才知道原来tomcat7的写法和原来不一样了。

原来版本在web.xml引入的时候会为:

<taglib>
    <taglib-uri>/WEB-INF/runqianReport4.tld</taglib-uri>
    <taglib-location>/WEB-INF/runqianReport4.tld</taglib-location>
  </taglib>

 而tomcat7以后的为

 

<jsp-config>
  <taglib>
    <taglib-uri>/WEB-INF/runqianReport4.tld</taglib-uri>
    <taglib-location>/WEB-INF/runqianReport4.tld</taglib-location>
  </taglib>
 </jsp-config>

 多了个<jsp-config>标签

 

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics