I have a spring controller method that receives some optional arrays as parameters. They are not required, but I\'d like them to be not null, but just empty arrays when they
Found the solution. The default empty array value is just "". But the problem is that even though the parameter is not required, it throws the 400th error. Weird. Working on that.