1
How to send an Object through redirect between requests?
I performed tests trying to send the object through the model, but without success.
Follows 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";
}
Excellent, addFlashAttribute I think would be the best solution.
– Matheus
@Matheus takes the test, if there’s a problem, let me know and I’ll help you.
– adelmo00