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

put() — spring-boot Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  4fef258c_a2a4_d498_7bd8_31a7595265f6["put()"]
  19cbd6f4_81a9_bfc7_960f_0eea60e995f6["createKubernetesEnvironment()"]
  19cbd6f4_81a9_bfc7_960f_0eea60e995f6 -->|calls| 4fef258c_a2a4_d498_7bd8_31a7595265f6
  b67c9e31_3e4f_e120_09c4_a49bbc276643["bindToArrayFromCommaStringPropertySetsOrigin()"]
  b67c9e31_3e4f_e120_09c4_a49bbc276643 -->|calls| 4fef258c_a2a4_d498_7bd8_31a7595265f6
  27b5ccbc_a8f0_49fc_122f_11eed43e58f5["bindToArrayFromCommaStringPropertyDoesNotFailOnEmptyElements()"]
  27b5ccbc_a8f0_49fc_122f_11eed43e58f5 -->|calls| 4fef258c_a2a4_d498_7bd8_31a7595265f6
  83c2ec80_9838_6602_47e0_a6c834a3b560["bindToArrayFromIndexedPropertiesSetsOrigin()"]
  83c2ec80_9838_6602_47e0_a6c834a3b560 -->|calls| 4fef258c_a2a4_d498_7bd8_31a7595265f6
  139c6404_b8eb_f36c_a308_826587727e66["bindToValueObjectFromCommaStringPropertySetsOrigin()"]
  139c6404_b8eb_f36c_a308_826587727e66 -->|calls| 4fef258c_a2a4_d498_7bd8_31a7595265f6
  8f077f6f_49f5_b42a_109f_1205e5311407["bindToValueObjectFromCommaStringPropertyDoesNotFailOnEmptyElements()"]
  8f077f6f_49f5_b42a_109f_1205e5311407 -->|calls| 4fef258c_a2a4_d498_7bd8_31a7595265f6
  389073a8_4b68_1608_f9c1_e412b2820291["bindToValueObjectFromIndexedPropertiesSetsOrigin()"]
  389073a8_4b68_1608_f9c1_e412b2820291 -->|calls| 4fef258c_a2a4_d498_7bd8_31a7595265f6
  941bf771_f029_da7b_4be5_55fb4bc2b196["isActiveAgainstBoundData()"]
  941bf771_f029_da7b_4be5_55fb4bc2b196 -->|calls| 4fef258c_a2a4_d498_7bd8_31a7595265f6
  59391cfd_2949_56f6_d41d_fb24ade8f1cb["isActiveAgainstBoundDataWhenProfilesDontMatch()"]
  59391cfd_2949_56f6_d41d_fb24ade8f1cb -->|calls| 4fef258c_a2a4_d498_7bd8_31a7595265f6
  dbdcb1be_e1db_8c6f_9a25_0f7d3be39d9c["isActiveAgainstBoundDataWhenCloudPlatformDoesntMatch()"]
  dbdcb1be_e1db_8c6f_9a25_0f7d3be39d9c -->|calls| 4fef258c_a2a4_d498_7bd8_31a7595265f6
  362ccb3a_31cf_c13e_ed68_668aa1edbd60["isActiveAgainstBoundDataWhenProfilesMatchCommaSeparatedList()"]
  362ccb3a_31cf_c13e_ed68_668aa1edbd60 -->|calls| 4fef258c_a2a4_d498_7bd8_31a7595265f6
  c814088a_c659_996c_8450_e178c6d9c7ad["getImportOriginWhenCommaListReturnsOrigin()"]
  c814088a_c659_996c_8450_e178c6d9c7ad -->|calls| 4fef258c_a2a4_d498_7bd8_31a7595265f6
  16c93e75_fe3e_dff9_7da7_04fd3152a229["getImportOriginWhenBracketListReturnsOrigin()"]
  16c93e75_fe3e_dff9_7da7_04fd3152a229 -->|calls| 4fef258c_a2a4_d498_7bd8_31a7595265f6
  28af9df8_7f23_c7bd_3ada_2891dc4f39dd["bindToMapShouldReturnPopulatedMap()"]
  28af9df8_7f23_c7bd_3ada_2891dc4f39dd -->|calls| 4fef258c_a2a4_d498_7bd8_31a7595265f6
  style 4fef258c_a2a4_d498_7bd8_31a7595265f6 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 80–83

	public void put(Object name, Object value) {
		Assert.notNull(name, "'name' must not be null");
		this.source.put(name.toString(), value);
	}

Domain

Subdomains

Called By

Frequently Asked Questions

What does put() do?
put() is a function in the spring-boot codebase.
What calls put()?
put() is called by 49 function(s): bindToArrayFromCommaStringPropertyDoesNotFailOnEmptyElements, bindToArrayFromCommaStringPropertySetsOrigin, bindToArrayFromIndexedPropertiesSetsOrigin, bindToBeanWithExceptionInGetterForExistingValue, bindToCustomMapWithoutCtorAndConverterShouldResolve, bindToEnumMapShouldBind, bindToImmutableMapShouldReturnPopulatedMap, bindToListOfMaps, and 41 more.

Analyze Your Own Codebase

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

Try Supermodel Free