Skip to content

Instantly share code, notes, and snippets.

@httpmurilo
Created April 2, 2024 21:30
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/c8d2b24fdfdb74ee4af00ae3b1cbc749 to your computer and use it in GitHub Desktop.
Save httpmurilo/c8d2b24fdfdb74ee4af00ae3b1cbc749 to your computer and use it in GitHub Desktop.
IUserRepository.java
public interface IUserRepository extends JpaRepository<User, Integer> {
@Query(value = "SELECT * FROM User WHERE name = ?1", nativeQuery = true)
User getUserByName(String name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment