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
()
| 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. |