java.lang.IllegalArgumentException: taglib definition not consistent with specification version

从Tomcat 6.0升级到Tomcat 7.0后,出现如上错误。网上搜索很久,发现答案大都是:增加<jsp-config>标记,试了几次仍然不行。后面发现是web.xml的schemaLaction等标记版本不对。从Tomcat 7.0官网拷贝一个入门Demo的web.xml配置,复制上去就可以了。


修改前

<!DOCTYPE web-app PUBLIC
 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
 "http://java.sun.com/dtd/web-app_2_3.dtd" >

<web-app>

</web-app>

修改后

<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
	version="2.4">

</web-app>


你可能感兴趣的:(tomcat7,taglib)