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

Method scan

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

Scan for TLDs in all places defined by the specification: Tag libraries defined by the platform Entries from <jsp-config> in web.xml A resources under /WEB-INF In jar files from /WEB-INF/lib Additional entries from the container @throws

()

Source from the content-addressed store, hash-verified

92 * @throws SAXException if there was a problem parsing a TLD
93 */
94 public void scan() throws IOException, SAXException {
95 scanPlatform();
96 scanJspConfig();
97 scanResourcePaths(WEB_INF);
98 scanJars();
99 }
100
101 /**
102 * Returns the map of URI to TldResourcePath built by this scanner.

Callers 2

testWithWebappMethod · 0.95
onStartupMethod · 0.95

Calls 4

scanPlatformMethod · 0.95
scanJspConfigMethod · 0.95
scanResourcePathsMethod · 0.95
scanJarsMethod · 0.95

Tested by 1

testWithWebappMethod · 0.76