Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 27, 2019 01:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/581266892f5572afa1c9887dbd8fd30f to your computer and use it in GitHub Desktop.
Save parzibyte/581266892f5572afa1c9887dbd8fd30f to your computer and use it in GitHub Desktop.
@PostMapping(value = "/agregar")
public String guardarProducto(@ModelAttribute Producto producto) {
// Aquí tienes a producto, el cual es un objeto con los campos llenados en el formulario
// Podrías guardarlo en la BD usando, por ejemplo (si tienes un repositorio):
// productosRepository.save(producto);
/* Más magia aquí */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment