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 AotProcessing calls 1 called by 3

Entity Profile

Dependency Diagram

graph TD
  1823838b_77b2_26bd_6f8d_f98c692cccc6["write()"]
  0a032bba_86b9_3f5c_b043_cfdd477b5966["write()"]
  0a032bba_86b9_3f5c_b043_cfdd477b5966 -->|calls| 1823838b_77b2_26bd_6f8d_f98c692cccc6
  aacc7743_3eb3_6855_0606_875d5fab1ffe["getWritableJsonToWrite()"]
  aacc7743_3eb3_6855_0606_875d5fab1ffe -->|calls| 1823838b_77b2_26bd_6f8d_f98c692cccc6
  237a7226_d7da_a548_d913_3b1dbb35f6af["formatAsBytes()"]
  237a7226_d7da_a548_d913_3b1dbb35f6af -->|calls| 1823838b_77b2_26bd_6f8d_f98c692cccc6
  0a032bba_86b9_3f5c_b043_cfdd477b5966["write()"]
  1823838b_77b2_26bd_6f8d_f98c692cccc6 -->|calls| 0a032bba_86b9_3f5c_b043_cfdd477b5966
  style 1823838b_77b2_26bd_6f8d_f98c692cccc6 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/json/JsonWriter.java lines 338–346

		void write(@Nullable T instance, JsonValueWriter valueWriter) {
			valueWriter.pushProcessors(this.jsonProcessors);
			valueWriter.start(this.series);
			for (Member<?> member : this.members) {
				member.write(instance, valueWriter);
			}
			valueWriter.end(this.series);
			valueWriter.popProcessors();
		}

Domain

Subdomains

Calls

Called By

  • formatAsBytes()
  • getWritableJsonToWrite()
  • write()

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free