Skip to content

Instantly share code, notes, and snippets.

@jeffersonchaves
Created July 7, 2025 18:47
Show Gist options
  • Save jeffersonchaves/bb85dd2a9697fde84752eec51f8a2dca to your computer and use it in GitHub Desktop.
Save jeffersonchaves/bb85dd2a9697fde84752eec51f8a2dca to your computer and use it in GitHub Desktop.
@Repository
public interface UserRepository extends JpaRepository<User, Long> {
public Optional<User> findByUsername(String username);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment