Guest User

Untitled

a guest
May 24th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. ●インターフェース側
  2.  @Repository
  3.  public interface MyDataRepository extends JpaRepository<MyData, Long> {
  4.  
  5.    @Query("select name from MyData")
  6.     public List<MyData> getAllName();  //インターフェースなのでメソッドの宣言のみ
  7. }
Add Comment
Please, Sign In to add comment