package hello; | |
import javax.validation.constraints.NotNull; | |
public class Producto { | |
@NotNull(message = "Debes especificar el nombre") | |
private String nombre; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment