Created
July 7, 2025 18:47
-
-
Save jeffersonchaves/bb85dd2a9697fde84752eec51f8a2dca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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