0

I am trying to migrate my application to use tomcat7 instead of tomcat5.5 but getting the below error. I am using tomcat-7.0.27 for Window 32 bit machine:

Jun 29, 2012 3:01:05 PM org.apache.jasper.compiler.TldLocationsCache tldScanJar 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.

Cœur
  • 37,241
  • 25
  • 195
  • 267
Niranjan Kumar
  • 819
  • 1
  • 10
  • 15

1 Answers1

1

You can define the jar files to skip when scanning for TLDs. This is done in conf/catalina.properties This will make the error (which obviously is only a INFO message) disapear and speedup the startupd/compile process of your application.

Michael Amthor
  • 123
  • 2
  • 8