Skip to content

Instantly share code, notes, and snippets.

@lusabo
Last active May 1, 2018 20:34
Show Gist options
  • Save lusabo/37ea075478390121b18e05b1fe635437 to your computer and use it in GitHub Desktop.
Save lusabo/37ea075478390121b18e05b1fe635437 to your computer and use it in GitHub Desktop.
UserRepository
package com.eco.security;
// Imports
@Repository
public interface UserRepository extends JpaRepository<User, Long> {
User findByUsername(String username);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment