How can we use spring RedirectAttributes
to add a attribute with same name and multiple values, like if I have HTTP request parameter say place=london&place=paris
, and I want to redirect these "place" params in a redirectAttribute
.
redirectAttribute.addAttribute("place",places??)
I don't want to use flash attributes.
Is it possible?