Tomcat启动项目报错: org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned for TLDs

Tomcat启动项目报错:

02-Aug-2019 14:57:39.928 信息 [RMI TCP Connection(3)-127.0.0.1] org.apache.jasper.servlet.TldScanner.scanJars 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.

解决方法:
找到当前项目的log4j.properties文件,在最后一行添加上下面的配置:

	org.apache.jasper.servlet.TldScanner.level = FINE

你可能感兴趣的:(java)