This method name should do the trick:
Page<QueuedBook> findByBookIdRegion(Region region, Pageable pageable);
More info on that in the section about query derivation of the reference docs.
Related Contents:
- What is difference between CrudRepository and JpaRepository interfaces in Spring Data JPA?
- Spring CrudRepository findByInventoryIds(List inventoryIdList) – equivalent to IN clause
- setMaxResults for Spring-Data-JPA annotation?
- How to use @Transactional with Spring Data?
- Understanding the Spring Data JPA @NoRepositoryBean interface
- How to sort by multiple properties in Spring Data (JPA) derived queries?
- Handling soft-deletes with Spring JPA
- Why use returned instance after save() on Spring Data JPA Repository?
- How to beautifully update a JPA entity in Spring Data?
- Spring Data JPA: query ManyToMany
- How to enable LockModeType.PESSIMISTIC_WRITE when looking up entities with Spring Data JPA?
- Using generics in Spring Data JPA repositories
- What is the difference between Hibernate and Spring Data JPA
- What is this spring.jpa.open-in-view=true property in Spring Boot?
- How to fetch FetchType.LAZY associations with JPA and Hibernate in a Spring Controller
- Difference between save and saveAndFlush in Spring data jpa
- How does Spring Data JPA differ from Hibernate for large projects?
- crudrepository findBy method signature with multiple in operators?
- Missing CrudRepository#findOne method
- How does the FetchMode work in Spring Data JPA
- Spring Data JPA difference between findBy / findAllBy
- Delete Not Working with JpaRepository
- spring data jpa @query and pageable
- What’s the difference between Hibernate and Spring Data JPA
- JPA: update only specific fields
- Spring data jpa- No bean named ‘entityManagerFactory’ is defined; Injection of autowired dependencies failed
- How to manually force a commit in a @Transactional method? [duplicate]
- How to query data out of the box using Spring data JPA by both Sort and Pageable?
- Update single field using spring data jpa
- Filtering database rows with spring-data-jpa and spring-mvc
- JPQL Like Case Insensitive
- Are you supposed to have one repository per table in JPA?
- Can I combine a @Query definition with a Specification in a Spring Data JPA repository method?
- Dynamic spring data jpa repository query with arbitrary AND clauses
- Spring-Data JPA CrudRepository returns Iterable, is it OK to cast this to List?
- Implementing custom methods of Spring Data repository and exposing them through REST
- Spring Boot, Spring Data JPA with multiple DataSources
- Consider defining a bean of type ‘service’ in your configuration [Spring boot]
- Best way of handling entities inheritance in Spring Data JPA
- Spring data, find by property of a nested object
- Spring-boot: required a bean named ‘entityManagerFactory’ that could not be found
- Spring JPA selecting specific columns
- What’s the difference between JPA and Spring Data JPA?
- How to return a custom object from a Spring Data JPA GROUP BY query
- POSTing a @OneToMany sub-resource association in Spring Data REST
- Injecting EntityManager Vs. EntityManagerFactory
- Spring JPA :: No converter found capable of converting from type
- What’s the difference between javax.persistence.Id and org.springframework.data.annotation.Id?
- Is there a way to use constants inside Spring Data @Query annotation value?
- Using @Version in spring-data project