@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