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.|org.apache.jasper.servlet.TldScanner
Found below config is working:
Reference URL: https://stackoverflow.com/a/50743050
you can add
server.tomcat.additional-tld-skip-patterns=*.jar
in application.properties
file or
server:
tomcat:
additional-tld-skip-patterns: '*.jar'
in application.yml
file.
No comments:
Post a Comment