Home / Function/ PropertyFile() — spring-boot Function Reference

PropertyFile() — spring-boot Function Reference

Architecture documentation for the PropertyFile() function in ConfigTreePropertySource.java from the spring-boot codebase.

Function java GradlePlugin AotProcessing calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  aacae207_b7e0_f473_f349_86053b253c21["PropertyFile()"]
  2dd034d9_fdbd_0980_7432_5a3cd65f508a["findAll()"]
  2dd034d9_fdbd_0980_7432_5a3cd65f508a -->|calls| aacae207_b7e0_f473_f349_86053b253c21
  874e05d3_851c_394f_e187_6554df451624["TextResourceOrigin()"]
  aacae207_b7e0_f473_f349_86053b253c21 -->|calls| 874e05d3_851c_394f_e187_6554df451624
  711db638_4b35_c397_1bc8_836dd1df5fa2["PropertyFileContent()"]
  aacae207_b7e0_f473_f349_86053b253c21 -->|calls| 711db638_4b35_c397_1bc8_836dd1df5fa2
  style aacae207_b7e0_f473_f349_86053b253c21 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/env/ConfigTreePropertySource.java lines 192–199

		private PropertyFile(Path path, Set<Option> options) {
			this.path = path;
			this.resource = new FileSystemResource(path);
			this.origin = new TextResourceOrigin(this.resource, START_OF_FILE);
			this.autoTrimTrailingNewLine = options.contains(Option.AUTO_TRIM_TRAILING_NEW_LINE);
			this.cachedContent = options.contains(Option.ALWAYS_READ) ? null
					: new PropertyFileContent(path, this.resource, this.origin, true, this.autoTrimTrailingNewLine);
		}

Domain

Subdomains

Calls

Called By

Frequently Asked Questions

What does PropertyFile() do?
PropertyFile() is a function in the spring-boot codebase.
What does PropertyFile() call?
PropertyFile() calls 2 function(s): PropertyFileContent, TextResourceOrigin.
What calls PropertyFile()?
PropertyFile() is called by 1 function(s): findAll.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free