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

getPropertyValue() — spring-boot Function Reference

Architecture documentation for the getPropertyValue() function in JavaCompilerPluginConfiguration.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  cd5f418b_c259_4904_49e5_1919016a3be0["getPropertyValue()"]
  57740982_7f99_bb05_75e1_cfffc9418f9f["getSourceMajorVersion()"]
  57740982_7f99_bb05_75e1_cfffc9418f9f -->|calls| cd5f418b_c259_4904_49e5_1919016a3be0
  41574849_8554_f362_53ca_fe75a679f6b6["getTargetMajorVersion()"]
  41574849_8554_f362_53ca_fe75a679f6b6 -->|calls| cd5f418b_c259_4904_49e5_1919016a3be0
  0de27adc_519c_5784_2c7b_6b2cb9249da9["getReleaseVersion()"]
  0de27adc_519c_5784_2c7b_6b2cb9249da9 -->|calls| cd5f418b_c259_4904_49e5_1919016a3be0
  style cd5f418b_c259_4904_49e5_1919016a3be0 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

build-plugin/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/JavaCompilerPluginConfiguration.java lines 82–87

	private @Nullable String getPropertyValue(String propertyName) {
		if (this.project.getProperties().containsKey(propertyName)) {
			return this.project.getProperties().get(propertyName).toString();
		}
		return null;
	}

Domain

Subdomains

Frequently Asked Questions

What does getPropertyValue() do?
getPropertyValue() is a function in the spring-boot codebase.
What calls getPropertyValue()?
getPropertyValue() is called by 3 function(s): getReleaseVersion, getSourceMajorVersion, getTargetMajorVersion.

Analyze Your Own Codebase

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

Try Supermodel Free