Package org.apache.tomcat
Interface JarScanner
public interface JarScanner
Scans a web application and classloader hierarchy for JAR files. Uses
include TLD scanning and web-fragment.xml scanning. Uses a call-back
mechanism so the caller can process each JAR found.
-
Method Summary
Modifier and TypeMethodDescriptionvoidscan(JarScanType scanType, jakarta.servlet.ServletContext context, JarScannerCallback callback) Scan the provided ServletContext and classloader for JAR files.voidsetJarScanFilter(JarScanFilter jarScanFilter)
-
Method Details
-
scan
void scan(JarScanType scanType, jakarta.servlet.ServletContext context, JarScannerCallback callback) Scan the provided ServletContext and classloader for JAR files. Each JAR file found will be passed to the callback handler to be processed.- Parameters:
scanType- The type of JAR scan to perform. This is passed to the filter which uses it to determine how to filter the resultscontext- The ServletContext - used to locate and access WEB-INF/libcallback- The handler to process any JARs found
-
getJarScanFilter
JarScanFilter getJarScanFilter() -
setJarScanFilter
-