Hi Team, I am trying to deploy a web application in tomcat 8 and getting the error 'taglib definition not consistent with specification version' in web.xml. I have the Jstl1.2.jar under my /lib directory. Do I need to make any other changes? Below is the content of my web.xml.
<?xml version="1.0" encoding="ISO-8859-1"?> <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_3_0.xsd" version="3.0"> ------------------ <taglib> <taglib-uri>...............</taglib-uri> <taglib-location>/WEB-INF/taglib/x.tld</taglib-location> </taglib> </web-app> Thanks, Dwarak