I’m using Play JSON 2.9.4 in Scala.
implementation group: 'com.typesafe.play', name: 'play-json_2.12', version: '2.9.4
I’m unable to parse JSON Strings larger than 5,000,000 characters.
The exception thrown is com.fasterxml.jackson.core.exc.StreamConstraintsException: String length (5043368) exceeds the maximum length (5000000)
I can see that it is occurring due to: https://github.com/FasterXML/jackson-core/issues/1001
How can I configure this limit through Play-JSON or in any way, I can’t find any way to do this ?