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

write() — spring-boot Function Reference

Architecture documentation for the write() function in JsonWriter.java from the spring-boot codebase.

Function java GradlePlugin RunTasks calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  0a032bba_86b9_3f5c_b043_cfdd477b5966["write()"]
  1823838b_77b2_26bd_6f8d_f98c692cccc6["write()"]
  1823838b_77b2_26bd_6f8d_f98c692cccc6 -->|calls| 0a032bba_86b9_3f5c_b043_cfdd477b5966
  1823838b_77b2_26bd_6f8d_f98c692cccc6["write()"]
  0a032bba_86b9_3f5c_b043_cfdd477b5966 -->|calls| 1823838b_77b2_26bd_6f8d_f98c692cccc6
  04bf6f23_cde5_2268_72c6_9a11996c3491["getValueToWrite()"]
  0a032bba_86b9_3f5c_b043_cfdd477b5966 -->|calls| 04bf6f23_cde5_2268_72c6_9a11996c3491
  style 0a032bba_86b9_3f5c_b043_cfdd477b5966 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/json/JsonWriter.java lines 648–655

		void write(@Nullable Object instance, JsonValueWriter valueWriter) {
			T extracted = this.valueExtractor.extract(instance);
			if (ValueExtractor.skip(extracted)) {
				return;
			}
			Object value = getValueToWrite(extracted, valueWriter);
			valueWriter.write(this.name, value);
		}

Domain

Subdomains

Called By

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free