Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. package com.example.domain;
  2.  
  3. import java.util.List;
  4.  
  5. import org.springframework.data.repository.CrudRepository;
  6.  
  7. public interface PersonRepository extends CrudRepository<Person, String>{
  8. List<Person> findPersonByShortName(String shortName);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement