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

get() — spring-boot Function Reference

Architecture documentation for the get() function in SpringApplicationJsonEnvironmentPostProcessor.java from the spring-boot codebase.

Function java GradlePlugin RunTasks calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  96255b5a_725b_6ae8_2140_1f0606d554ed["get()"]
  a3ff009c_35d3_16bb_be73_4bc5da2adfcf["getOrigin()"]
  a3ff009c_35d3_16bb_be73_4bc5da2adfcf -->|calls| 96255b5a_725b_6ae8_2140_1f0606d554ed
  c08472d1_0523_dcc9_5df2_017ca9268c5a["get()"]
  96255b5a_725b_6ae8_2140_1f0606d554ed -->|calls| c08472d1_0523_dcc9_5df2_017ca9268c5a
  6e3350fc_ebca_ee56_efc0_d6c7f2e67b45["JsonPropertyValue()"]
  96255b5a_725b_6ae8_2140_1f0606d554ed -->|calls| 6e3350fc_ebca_ee56_efc0_d6c7f2e67b45
  style 96255b5a_725b_6ae8_2140_1f0606d554ed fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/support/SpringApplicationJsonEnvironmentPostProcessor.java lines 220–228

		static @Nullable JsonPropertyValue get(PropertySource<?> propertySource) {
			for (String candidate : CANDIDATES) {
				Object value = propertySource.getProperty(candidate);
				if (value instanceof String string && StringUtils.hasLength(string)) {
					return new JsonPropertyValue(propertySource, candidate, string);
				}
			}
			return null;
		}

Domain

Subdomains

Calls

Called By

Frequently Asked Questions

What does get() do?
get() is a function in the spring-boot codebase.
What does get() call?
get() calls 2 function(s): JsonPropertyValue, get.
What calls get()?
get() is called by 1 function(s): getOrigin.

Analyze Your Own Codebase

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

Try Supermodel Free