Core concept
interface UserRepo extends JpaRepository {
List findByEmail(String email);
} Advertisement
How it works
Query DSL powerful but sometimes surprising. JPA gotchas.
Advertisement
Trade-offs + gotchas
Data access layer.
interface UserRepo extends JpaRepository {
List findByEmail(String email);
} Query DSL powerful but sometimes surprising. JPA gotchas.
Data access layer.