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

analyzeUnboundConfigurationPropertiesException() — spring-boot Function Reference

Architecture documentation for the analyzeUnboundConfigurationPropertiesException() function in UnboundConfigurationPropertyFailureAnalyzer.java from the spring-boot codebase.

Function java GradlePlugin RunTasks calls 4 called by 1

Entity Profile

Dependency Diagram

graph TD
  89a29da7_746f_c376_775a_f49aea55acf2["analyzeUnboundConfigurationPropertiesException()"]
  aa67b546_7f1a_7d89_47a2_4406461eeaf5["analyze()"]
  aa67b546_7f1a_7d89_47a2_4406461eeaf5 -->|calls| 89a29da7_746f_c376_775a_f49aea55acf2
  d8eb016b_fb5d_60b6_7c1a_22331542ca93["getTarget()"]
  89a29da7_746f_c376_775a_f49aea55acf2 -->|calls| d8eb016b_fb5d_60b6_7c1a_22331542ca93
  8e82ff8b_99f9_98bc_beff_24dd991f1b1d["getUnboundProperties()"]
  89a29da7_746f_c376_775a_f49aea55acf2 -->|calls| 8e82ff8b_99f9_98bc_beff_24dd991f1b1d
  89d4ab1d_38b9_4778_0ed9_71f913da636a["buildDescription()"]
  89a29da7_746f_c376_775a_f49aea55acf2 -->|calls| 89d4ab1d_38b9_4778_0ed9_71f913da636a
  8db40416_e3be_9851_331d_d1df4acaf706["getFailureAnalysis()"]
  89a29da7_746f_c376_775a_f49aea55acf2 -->|calls| 8db40416_e3be_9851_331d_d1df4acaf706
  style 89a29da7_746f_c376_775a_f49aea55acf2 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/diagnostics/analyzer/UnboundConfigurationPropertyFailureAnalyzer.java lines 44–53

	private FailureAnalysis analyzeUnboundConfigurationPropertiesException(BindException cause,
			UnboundConfigurationPropertiesException exception) {
		StringBuilder description = new StringBuilder(
				String.format("Binding to target %s failed:%n", cause.getTarget()));
		for (ConfigurationProperty property : exception.getUnboundProperties()) {
			buildDescription(description, property);
			description.append(String.format("%n    Reason: %s", exception.getMessage()));
		}
		return getFailureAnalysis(description, cause);
	}

Domain

Subdomains

Calls

Called By

Frequently Asked Questions

What does analyzeUnboundConfigurationPropertiesException() do?
analyzeUnboundConfigurationPropertiesException() is a function in the spring-boot codebase.
What does analyzeUnboundConfigurationPropertiesException() call?
analyzeUnboundConfigurationPropertiesException() calls 4 function(s): buildDescription, getFailureAnalysis, getTarget, getUnboundProperties.
What calls analyzeUnboundConfigurationPropertiesException()?
analyzeUnboundConfigurationPropertiesException() is called by 1 function(s): analyze.

Analyze Your Own Codebase

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

Try Supermodel Free