Is your feature request related to a problem? Please describe.
Currently, JsonMapper.Builder requires the JsonFactory at construction time. In managed environments like Spring Boot, the builder is often instantiated by the framework before the user can provide a custom factory (e.g., for CharacterEscapes). This makes it impossible to customize the factory without discarding the entire builder state. Adding a .streamFactory(factory) setter to the builder would resolve this.
Describe the solution you'd like
Adding a .streamFactory(factory) setter to the builder
Usage example
No response
Additional context
No response