Skip to content

Instantly share code, notes, and snippets.

@httpmurilo
Created April 2, 2024 22:37
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/f37551991cae80fb6479312c833ac470 to your computer and use it in GitHub Desktop.
Save httpmurilo/f37551991cae80fb6479312c833ac470 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