How to send an object through redirect between requests?
I performed tests trying to send the object through the model, but without success.
Follow the code:
@RequestMapping("removeResultado")
public String remove(RequestParam(value = "codigo", required = true)int cod,Model model) {
Evento evento = daoEvento.buscarIDEvento(cod);
model.addAttribute(evento);
this.dao.remove(cod);
return "redirect:listaResultados";
}
@RequestMapping("listaResultados")
public String busca(Evento evento, Model model) {
List<Resultado> resultados = this.dao.buscaResultadosEvento(evento);
model.addAttribute("resultados", resultados);
return "/Resultado/ListaResultados";
}