Sorting by Annotation
Sorting entities by using static annotations in repository methods.
Annotation
Example
Multiple usage allowed?
Description
@Collection("customer_repository")
public interface CustomerRepository extends Repository<Customer, UUID> {
@SortBy(field = "customerId")
@SortBy(field = "balance")
@Limit(20)
List<Customer> findManyByCustomerIdExists();
}Last updated