MCPcopy Index your code
hub / github.com/apache/tomcat / scanJars

Method scanJars

java/org/apache/jasper/servlet/TldScanner.java:245–252  ·  view source on GitHub ↗

Scan for TLDs in JARs in /WEB-INF/lib.

()

Source from the content-addressed store, hash-verified

243 * Scan for TLDs in JARs in /WEB-INF/lib.
244 */
245 public void scanJars() {
246 JarScanner scanner = JarScannerFactory.getJarScanner(context);
247 TldScannerCallback callback = new TldScannerCallback();
248 scanner.scan(JarScanType.TLD, context, callback);
249 if (callback.scanFoundNoTLDs()) {
250 log.info(Localizer.getMessage("jsp.tldCache.noTldSummary"));
251 }
252 }
253
254 /**
255 * Parses a TLD from the given resource path string.

Callers 1

scanMethod · 0.95

Calls 5

getJarScannerMethod · 0.95
scanMethod · 0.95
scanFoundNoTLDsMethod · 0.95
getMessageMethod · 0.95
infoMethod · 0.65

Tested by

no test coverage detected