I have a code in Spring 2.5, which is working fine. I am trying to migrate to Spring5. As part of that, few requests failing with response code 400.
Reason is -
null
value in one of the Params in query string.
Spring 2.5 was allowing that.
Example:
request.do?param1=value¶m2=null
I don't want to refactor the existing code.
Is there any configuration in spring 5 to allow this? Or what is the minimal or easiest way to fix this?