
com.aerospike.example.sync.SyncCustomerRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sync Show documentation
Show all versions of sync Show documentation
Example for using Spring Boot Data Aerospike Starter
The newest version!
package com.aerospike.example.sync;
import org.springframework.data.aerospike.repository.AerospikeRepository;
import org.springframework.data.repository.CrudRepository;
import java.util.List;
public interface SyncCustomerRepository extends AerospikeRepository, CrudRepository {
List findByLastNameOrderByFirstNameAsc(String lastName);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy