I want to write a Spring Data JPA repository interface method signature that will let me find entities with a property of an embedded object in that entity. Does anyone know
This method name should do the trick:
Page findByBookIdRegion(Region region, Pageable pageable);
More info on that in the section about query derivation of the reference docs.