🔎 Spring Data Query Deriver

Type a Spring Data JPA repository method name — like findByStatusAndCustomerOrderByCreatedAtDesc — and watch Spring derive the JPQL, the SQL, and the Java signature from the name alone. Every keyword explained. Runs entirely in your browser.

★ Star on GitHub
interface OrderRepository extends JpaRepository<Order, Long> {

How Spring parses the name

JPQL


    

Generated SQL


    

Java method signature


  

Keywords in this query

KeywordSQLMeaning

The sample entity