I am redirecting from a controller to another controller. But I also need to pass model attributes to the second controller.
I don\'t want to put the model in sessi
Using just redirectAttributes.addFlashAttribute(...) -> "redirect:..." worked as well, didn't have to "reinsert" the model attribute.
redirectAttributes.addFlashAttribute(...) -> "redirect:..."
Thanks, aborskiy!