Last active
January 29, 2021 18:48
-
-
Save jahe/c5b543b44b1f02a8bb3d to your computer and use it in GitHub Desktop.
Spring Data Cheatsheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Find the entity with the latest insert timestamp | |
| @Repository | |
| public interface MyEntityRepo extends JpaRepository<MyEntity, Long> { | |
| MyEntity findFirstByOrderByInsertTimestampDesc(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment