Skip to content

Instantly share code, notes, and snippets.

@krams915
Created December 10, 2012 03:44
Show Gist options
  • Select an option

  • Save krams915/4248271 to your computer and use it in GitHub Desktop.

Select an option

Save krams915/4248271 to your computer and use it in GitHub Desktop.
Spring Social UserRepository.java
package org.krams.repository;
import org.krams.domain.User;
import org.springframework.data.jpa.repository.JpaRepository;
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