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

getImportedMessage() — spring-boot Function Reference

Architecture documentation for the getImportedMessage() function in ConfigDataEnvironmentContributors.java from the spring-boot codebase.

Function java GradlePlugin AotProcessing calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  0bed3467_4ef0_e6b2_96b4_6e2b76062046["getImportedMessage()"]
  2c598cf7_c89e_1a9a_34ad_544bfdb794e9["withProcessedImports()"]
  2c598cf7_c89e_1a9a_34ad_544bfdb794e9 -->|calls| 0bed3467_4ef0_e6b2_96b4_6e2b76062046
  723faf45_147b_9b0f_f957_9de88f8cbb17["isEmpty()"]
  0bed3467_4ef0_e6b2_96b4_6e2b76062046 -->|calls| 723faf45_147b_9b0f_f957_9de88f8cbb17
  ab2d8162_8b78_6d7d_a007_edd56cb0b2e5["append()"]
  0bed3467_4ef0_e6b2_96b4_6e2b76062046 -->|calls| ab2d8162_8b78_6d7d_a007_edd56cb0b2e5
  style 0bed3467_4ef0_e6b2_96b4_6e2b76062046 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigDataEnvironmentContributors.java lines 142–150

	private CharSequence getImportedMessage(Set<ConfigDataResolutionResult> results) {
		if (results.isEmpty()) {
			return "Nothing imported";
		}
		StringBuilder message = new StringBuilder();
		message.append("Imported " + results.size() + " resource" + ((results.size() != 1) ? "s " : " "));
		message.append(results.stream().map(ConfigDataResolutionResult::getResource).toList());
		return message;
	}

Domain

Subdomains

Frequently Asked Questions

What does getImportedMessage() do?
getImportedMessage() is a function in the spring-boot codebase.
What does getImportedMessage() call?
getImportedMessage() calls 2 function(s): append, isEmpty.
What calls getImportedMessage()?
getImportedMessage() is called by 1 function(s): withProcessedImports.

Analyze Your Own Codebase

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

Try Supermodel Free