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

jsonMembers() — spring-boot Function Reference

Architecture documentation for the jsonMembers() function in ElasticCommonSchemaProperties.java from the spring-boot codebase.

Function java GradlePlugin RunTasks calls 4 called by 2

Entity Profile

Dependency Diagram

graph TD
  7861385d_f2c2_c637_c93d_c701d847504d["jsonMembers()"]
  7b7fd415_9279_378e_179b_4beb6061c912["jsonMembers()"]
  7b7fd415_9279_378e_179b_4beb6061c912 -->|calls| 7861385d_f2c2_c637_c93d_c701d847504d
  35eb7ecf_9392_fb71_cf15_2f2d3e61ddac["jsonMembers()"]
  35eb7ecf_9392_fb71_cf15_2f2d3e61ddac -->|calls| 7861385d_f2c2_c637_c93d_c701d847504d
  7b7fd415_9279_378e_179b_4beb6061c912["jsonMembers()"]
  7861385d_f2c2_c637_c93d_c701d847504d -->|calls| 7b7fd415_9279_378e_179b_4beb6061c912
  d0d59b0c_56d4_a304_dc9e_100c37a66c83["add()"]
  7861385d_f2c2_c637_c93d_c701d847504d -->|calls| d0d59b0c_56d4_a304_dc9e_100c37a66c83
  6040ac94_b86b_47f1_7325_fa71a218688d["usingMembers()"]
  7861385d_f2c2_c637_c93d_c701d847504d -->|calls| 6040ac94_b86b_47f1_7325_fa71a218688d
  f48a50d1_ddbc_22d1_6b49_38fc95f9d284["whenHasLength()"]
  7861385d_f2c2_c637_c93d_c701d847504d -->|calls| f48a50d1_ddbc_22d1_6b49_38fc95f9d284
  style 7861385d_f2c2_c637_c93d_c701d847504d fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/logging/structured/ElasticCommonSchemaProperties.java lines 85–93

		@SuppressWarnings("NullAway") // Doesn't detect lambda with correct nullability
		void jsonMembers(Members<?> members) {
			members.add("service").usingMembers((service) -> {
				service.add("name", this::name).whenHasLength();
				service.add("version", this::version).whenHasLength();
				service.add("environment", this::environment).whenHasLength();
				service.add("node").usingMembers((node) -> node.add("name", this::nodeName).whenHasLength());
			});
		}

Domain

Subdomains

Called By

Frequently Asked Questions

What does jsonMembers() do?
jsonMembers() is a function in the spring-boot codebase.
What does jsonMembers() call?
jsonMembers() calls 4 function(s): add, jsonMembers, usingMembers, whenHasLength.
What calls jsonMembers()?
jsonMembers() is called by 2 function(s): jsonMembers, jsonMembers.

Analyze Your Own Codebase

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

Try Supermodel Free