Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 2, 2019 23:38
Embed
What would you like to do?
package hello;
import org.springframework.data.repository.CrudRepository;
public interface ProductosRepository extends CrudRepository<Producto, Integer> {
Producto findFirstByCodigo(String codigo);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment