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

putAll() — spring-boot Function Reference

Architecture documentation for the putAll() function in MapConfigurationPropertySource.java from the spring-boot codebase.

Function java GradlePlugin AotProcessing calls 1 called by 3

Entity Profile

Dependency Diagram

graph TD
  56389443_af72_e3fc_2cb2_953409e72eff["putAll()"]
  6b13a440_b8c4_f4d4_0bc2_c932b8debc75["MapConfigurationPropertySource()"]
  6b13a440_b8c4_f4d4_0bc2_c932b8debc75 -->|calls| 56389443_af72_e3fc_2cb2_953409e72eff
  55b1a66e_e3d0_ab30_4fb2_6861d115b729["MyCustomNoDefaultConstructorMap()"]
  55b1a66e_e3d0_ab30_4fb2_6861d115b729 -->|calls| 56389443_af72_e3fc_2cb2_953409e72eff
  244c17c3_aa00_685f_49a7_2878745f02ef["setItems()"]
  244c17c3_aa00_685f_49a7_2878745f02ef -->|calls| 56389443_af72_e3fc_2cb2_953409e72eff
  73e69a43_c8e7_ead1_cabd_6cde4968032e["assertNotReadOnlySystemAttributesMap()"]
  56389443_af72_e3fc_2cb2_953409e72eff -->|calls| 73e69a43_c8e7_ead1_cabd_6cde4968032e
  style 56389443_af72_e3fc_2cb2_953409e72eff fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/context/properties/source/MapConfigurationPropertySource.java lines 69–73

	public void putAll(Map<?, ?> map) {
		Assert.notNull(map, "'map' must not be null");
		assertNotReadOnlySystemAttributesMap(map);
		map.forEach(this::put);
	}

Domain

Subdomains

Calls

  • assertNotReadOnlySystemAttributesMap()

Called By

Frequently Asked Questions

What does putAll() do?
putAll() is a function in the spring-boot codebase.
What does putAll() call?
putAll() calls 1 function(s): assertNotReadOnlySystemAttributesMap.
What calls putAll()?
putAll() is called by 3 function(s): MapConfigurationPropertySource, MyCustomNoDefaultConstructorMap, setItems.

Analyze Your Own Codebase

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

Try Supermodel Free