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

Method deployApps

java/org/apache/catalina/startup/HostConfig.java:401–413  ·  view source on GitHub ↗

Deploy applications for any directories or WAR files that are found in our "application root" directory.

()

Source from the content-addressed store, hash-verified

399 * Deploy applications for any directories or WAR files that are found in our "application root" directory.
400 */
401 protected void deployApps() {
402 // Migrate legacy Java EE apps from legacyAppBase
403 migrateLegacyApps();
404 File appBase = host.getAppBaseFile();
405 File configBase = host.getConfigBaseFile();
406 String[] filteredAppPaths = filterAppPaths(appBase.list());
407 // Deploy XML descriptors from configBase
408 deployDescriptors(configBase, configBase.list());
409 // Deploy WARs
410 deployWARs(appBase, filteredAppPaths);
411 // Deploy expanded folders
412 deployDirectories(appBase, filteredAppPaths);
413 }
414
415
416 /**

Callers 2

startMethod · 0.95
checkMethod · 0.95

Calls 15

migrateLegacyAppsMethod · 0.95
filterAppPathsMethod · 0.95
deployDescriptorsMethod · 0.95
deployWARsMethod · 0.95
deployDirectoriesMethod · 0.95
getBaseNameMethod · 0.95
deploymentExistsMethod · 0.95
getNameMethod · 0.95
deployDescriptorMethod · 0.95
deployWARMethod · 0.95
deployDirectoryMethod · 0.95
getAppBaseFileMethod · 0.65

Tested by

no test coverage detected