tomcat 7起動異常



tomcat-7.0.5
例外:
 
java.lang.IllegalArgumentException: taglib definition not consistent with specification version
 
 
解決:
taglibラベルにjsp-configラベルを付ける
 
<jsp-config>
	<taglib>
		<taglib-uri>/WEB-INF/xxx.tld</taglib-uri>
		<taglib-location>/WEB-INF/xxx.tld</taglib-location>
	</taglib>
</jsp-config>