Spring Data JPA: About Specification interface
The objective of Specification interface is to let developers make reusable Predicates objects to append into a query when needed. For example, to create a query of this entity. @Entity @Table(name = "Customer") public class Customer { @Id @Column(name =...