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

getAction() — spring-boot Function Reference

Architecture documentation for the getAction() function in InvalidConfigurationPropertyValueFailureAnalyzer.java from the spring-boot codebase.

Function java GradlePlugin DslExtensions calls 3 called by 1

Entity Profile

Dependency Diagram

graph TD
  3709f0c7_6320_0808_8110_5cbc55a80415["getAction()"]
  d46c0de4_6f8b_b050_2454_a92b12e385b6["analyze()"]
  d46c0de4_6f8b_b050_2454_a92b12e385b6 -->|calls| 3709f0c7_6320_0808_8110_5cbc55a80415
  1a4e5320_a2e2_8aa5_7d05_1e805db190f1["getAction()"]
  3709f0c7_6320_0808_8110_5cbc55a80415 -->|calls| 1a4e5320_a2e2_8aa5_7d05_1e805db190f1
  69cfa082_aef8_7316_fc18_27c5c81ee74c["getReason()"]
  3709f0c7_6320_0808_8110_5cbc55a80415 -->|calls| 69cfa082_aef8_7316_fc18_27c5c81ee74c
  1bf44ab6_00ac_f2d3_1e78_d094999a8373["toString()"]
  3709f0c7_6320_0808_8110_5cbc55a80415 -->|calls| 1bf44ab6_00ac_f2d3_1e78_d094999a8373
  style 3709f0c7_6320_0808_8110_5cbc55a80415 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/diagnostics/analyzer/InvalidConfigurationPropertyValueFailureAnalyzer.java lines 124–132

	private String getAction(InvalidConfigurationPropertyValueException cause) {
		StringBuilder action = new StringBuilder();
		action.append("Review the value of the property");
		if (cause.getReason() != null) {
			action.append(" with the provided reason");
		}
		action.append(".");
		return action.toString();
	}

Domain

Subdomains

Calls

Called By

Frequently Asked Questions

What does getAction() do?
getAction() is a function in the spring-boot codebase.
What does getAction() call?
getAction() calls 3 function(s): getAction, getReason, toString.
What calls getAction()?
getAction() 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