Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 2, 2019 23:48
Show Gist options
  • Save parzibyte/01e279d6047fe55d89ad3ee951f21816 to your computer and use it in GitHub Desktop.
Save parzibyte/01e279d6047fe55d89ad3ee951f21816 to your computer and use it in GitHub Desktop.
@GetMapping(value = "/mostrar")
public String mostrarProductos(Model model) {
model.addAttribute("productos", productosRepository.findAll());
return "productos/ver_productos";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment