All, I'm running into a bit of weirdness when using Tomcat 7 and Log4j2's Tag Library. I have a JSP set up with the following property:
<%@ taglib uri="http://logging.apache.org/log4j/tld/log" prefix="log" %> ...which works just fine with Tomcat 6, whenever I hit an error condition. However, if I move to Tomcat 7, I get the following exception: org.apache.jasper.JasperException: The absolute uri: http://logging.apache.org/log4j/tld/log cannot be resolved in either web.xml or the jar files deployed with this application If I move the .tld into my META-INF folder, it works fine as well. Is this some sort of issue between Tomcat 6 and Tomcat 7 that hasn't been explored yet, or am I missing a configuration step?