When starting the application or compiling JSP via ant, Tomcat 7 Jasper complains about superfluous or misplaced JAR file. I got below message
**compile-jsp:**
[jasper] Jul 31, 2012 7:15:15 PM org.apache.jasper.compiler.TldLocationsCache tldScanJar
[jasper] INFO: At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.
how to Skipping unneeded JARs during scanning can improve startup time and JSP compilation time in tomcat?
how to enable better output?
${catalina.home}/conf/logging.properties
settingorg.apache.catalina.core.ContainerBase.[Catalina].[localhost].level = FINE
, restart tomcat and then post the output? tomcat is not complaining about superfluous jars, but about missing tlds definitions and adjusting the log level will show you some more details (it will show you where tomcat is looking for the missing tlds and a suggestion on how to solve your issue) – Stine