Uses of Interface
org.springframework.boot.json.JsonWriter
Packages that use JsonWriter
Package
Description
Support for parsing JSON.
Support for structured logging.
- 
Uses of JsonWriter in org.springframework.boot.jsonMethods in org.springframework.boot.json that return JsonWriterModifier and TypeMethodDescriptionstatic <T> JsonWriter<T>JsonWriter.of(Consumer<JsonWriter.Members<T>> members) Factory method to return aJsonWriterwith specificmember mapping.static <T> JsonWriter<T>JsonWriter.standard()Factory method to return aJsonWriterfor standard Java types.default JsonWriter<T>JsonWriter.withNewLineAtEnd()Return a newJsonWriterinstance that appends a new line after the JSON has been written.default JsonWriter<T>JsonWriter.withSuffix(String suffix) Return a newJsonWriterinstance that appends the given suffix after the JSON has been written.
- 
Uses of JsonWriter in org.springframework.boot.logging.structuredConstructors in org.springframework.boot.logging.structured with parameters of type JsonWriterModifierConstructorDescriptionprotectedJsonWriterStructuredLogFormatter(JsonWriter<E> jsonWriter) Create a newJsonWriterStructuredLogFormatterinstance with the givenJsonWriter.