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

getProperty() — spring-boot Function Reference

Architecture documentation for the getProperty() function in ApplicationPidFileWriter.java from the spring-boot codebase.

Function java GradlePlugin RunTasks calls 1 called by 3

Entity Profile

Dependency Diagram

graph TD
  da607425_3ce5_c04b_c74a_dd1d7e59c043["getProperty()"]
  3d28acef_57ad_a49f_5fa9_5b670014f248["writePidFile()"]
  3d28acef_57ad_a49f_5fa9_5b670014f248 -->|calls| da607425_3ce5_c04b_c74a_dd1d7e59c043
  385a30e4_c09c_8225_c231_d032c339d15b["failOnWriteError()"]
  385a30e4_c09c_8225_c231_d032c339d15b -->|calls| da607425_3ce5_c04b_c74a_dd1d7e59c043
  e8e9435c_766f_0511_3d56_58301ecc0ec1["getValue()"]
  e8e9435c_766f_0511_3d56_58301ecc0ec1 -->|calls| da607425_3ce5_c04b_c74a_dd1d7e59c043
  e8e9435c_766f_0511_3d56_58301ecc0ec1["getValue()"]
  da607425_3ce5_c04b_c74a_dd1d7e59c043 -->|calls| e8e9435c_766f_0511_3d56_58301ecc0ec1
  style da607425_3ce5_c04b_c74a_dd1d7e59c043 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/context/ApplicationPidFileWriter.java lines 167–175

	private @Nullable String getProperty(SpringApplicationEvent event, List<Property> candidates) {
		for (Property candidate : candidates) {
			String value = candidate.getValue(event);
			if (value != null) {
				return value;
			}
		}
		return null;
	}

Domain

Subdomains

Calls

Called By

Frequently Asked Questions

What does getProperty() do?
getProperty() is a function in the spring-boot codebase.
What does getProperty() call?
getProperty() calls 1 function(s): getValue.
What calls getProperty()?
getProperty() is called by 3 function(s): failOnWriteError, getValue, writePidFile.

Analyze Your Own Codebase

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

Try Supermodel Free