Skip to content

Instantly share code, notes, and snippets.

@jahe
Last active January 29, 2021 18:48
Show Gist options
  • Select an option

  • Save jahe/c5b543b44b1f02a8bb3d to your computer and use it in GitHub Desktop.

Select an option

Save jahe/c5b543b44b1f02a8bb3d to your computer and use it in GitHub Desktop.
Spring Data Cheatsheet
// 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