June 2017
Intermediate to advanced
496 pages
14h 4m
English
Spring Data JPA also provides options to write custom queries. The following snippet shows a simple example:
@Query("select u from User u where u.name = ?1") List<User> findUsersByNameUsingQuery(String name);
Important things to note are as follows:
Read now
Unlock full access