Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 2, 2019 23:48
Embed
What would you like to do?
@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