Skip to content

Instantly share code, notes, and snippets.

@httpmurilo
Created March 29, 2024 01:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save httpmurilo/099015b51c8cdbeb2fc0158ed05f7259 to your computer and use it in GitHub Desktop.
Save httpmurilo/099015b51c8cdbeb2fc0158ed05f7259 to your computer and use it in GitHub Desktop.
IUserRepository.java
public interface IUserRepository extends JpaRepository<User, Integer> {
@Query("select u from User u where u.name =:nome ")
User getUserByName(String nome);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment