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

getConfigurationValue() — spring-boot Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  1523465b_5f0f_4665_4355_b8bef4c9e688["getConfigurationValue()"]
  57740982_7f99_bb05_75e1_cfffc9418f9f["getSourceMajorVersion()"]
  57740982_7f99_bb05_75e1_cfffc9418f9f -->|calls| 1523465b_5f0f_4665_4355_b8bef4c9e688
  41574849_8554_f362_53ca_fe75a679f6b6["getTargetMajorVersion()"]
  41574849_8554_f362_53ca_fe75a679f6b6 -->|calls| 1523465b_5f0f_4665_4355_b8bef4c9e688
  0de27adc_519c_5784_2c7b_6b2cb9249da9["getReleaseVersion()"]
  0de27adc_519c_5784_2c7b_6b2cb9249da9 -->|calls| 1523465b_5f0f_4665_4355_b8bef4c9e688
  9860019e_a833_3cfc_8032_8ec2708b9844["getNodeValue()"]
  1523465b_5f0f_4665_4355_b8bef4c9e688 -->|calls| 9860019e_a833_3cfc_8032_8ec2708b9844
  style 1523465b_5f0f_4665_4355_b8bef4c9e688 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 71–80

	private @Nullable String getConfigurationValue(String propertyName) {
		Plugin plugin = this.project.getPlugin("org.apache.maven.plugins:maven-compiler-plugin");
		if (plugin != null) {
			Object pluginConfiguration = plugin.getConfiguration();
			if (pluginConfiguration instanceof Xpp3Dom dom) {
				return getNodeValue(dom, propertyName);
			}
		}
		return null;
	}

Domain

Subdomains

Calls

  • getNodeValue()

Frequently Asked Questions

What does getConfigurationValue() do?
getConfigurationValue() is a function in the spring-boot codebase.
What does getConfigurationValue() call?
getConfigurationValue() calls 1 function(s): getNodeValue.
What calls getConfigurationValue()?
getConfigurationValue() 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