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>标签

 

 

 

你可能感兴趣的:(exception)