Open
Description
Hi Team
It is general question, I asked in stackoverflow also but needed your input.
We are upgrading Spring 5.x to Spring 6.x. We have a use case where we have to populate some custom property during initbinder which used to work earlier but now not working anymore. Do we have a way to attach mutable properties in case binder target comes null ?
Something like this:
MutablePropertyValues map = new MutablePropertyValues(); // Any way to attach these in case target is null ?? map.addPropertyValue("Test", "123"); webDataBinder.bind(map);