Annotates a repository method to request sorting of results.
When multiple OrderBy annotations are specified on a
 repository method, the precedence for sorting follows the order
 in which the OrderBy annotations are specified,
 and after that follows any sort criteria that are supplied
 dynamically by Sort parameters, any Order parameter,
 or by a PageRequest parameter with
 sorting criteria.
For example, the following sorts first by the
 lastName attribute in ascending order,
 and secondly, for entities with the same lastName,
 it then sorts by the firstName attribute,
 also in ascending order. For entities with the same
 lastName and firstName,
 it then sorts by criteria that is specified in the
 PageRequest.sorts().
 @OrderBy("lastName")
 @OrderBy("firstName")
 Person[] findByZipCode(int zipCode, PageRequest<?> pageRequest);
 
 The precise meaning of ascending and descending order is
 defined by the database, but generally ascending order for
 numeric values means smaller numbers before larger numbers and for
 string values means A before Z.
A repository method with an @OrderBy annotation must not
 have:
- the Query by Method Name 
OrderBykeyword in its name, nor - a 
@Queryannotation specifying a JDQL or JPQL query with anORDER BYclause. 
A Jakarta Data provider is permitted to reject such a repository
 method declaration at compile time or to implement the method to
 throw UnsupportedOperationException.
A repository method will fail with a
 DataException
 or a more specific subclass if the database is incapable of
 ordering with the requested sort criteria.
- 
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic @interfaceEnables multipleOrderByannotations on the method. - 
Required Element Summary
Required Elements - 
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionbooleanIndicate whether to use descending order when sorting by this attribute.booleanIndicates whether or not to request case insensitive ordering from a database with case sensitive collation. 
- 
Element Details
- 
descending
boolean descendingIndicate whether to use descending order when sorting by this attribute.
The default value of
falsemeans ascending sort.- Returns:
 - whether to use descending (versus ascending) order.
 
- Default:
 false
 - 
ignoreCase
boolean ignoreCaseIndicates whether or not to request case insensitive ordering from a database with case sensitive collation. A database with case insensitive collation performs case insensitive ordering regardless of the requested
ignoreCasevalue.The default value is
false.- Returns:
 - whether or not to request case insensitive sorting for the property.
 
- Default:
 false
 - 
value
String valueEntity attribute name to sort by.
For example,
@OrderBy("age") Stream<Person> findByLastName(String lastName);- Returns:
 - entity attribute name.
 
 
 -