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

Method configFile

java/org/apache/catalina/startup/Catalina.java:468–476  ·  view source on GitHub ↗

Return a File object representing our configuration file. @return the main configuration file

()

Source from the content-addressed store, hash-verified

466 * @return the main configuration file
467 */
468 protected File configFile() {
469
470 File file = new File(configFile);
471 if (!file.isAbsolute()) {
472 file = new File(Bootstrap.getCatalinaBase(), configFile);
473 }
474 return file;
475
476 }
477
478
479 /**

Callers 1

parseServerXmlMethod · 0.95

Calls 1

getCatalinaBaseMethod · 0.95

Tested by

no test coverage detected