This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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