はじめの1歩!Sping Data JPAでサクっとWEBアプリケーションを作ろう! ~ 新着情報一覧・登録機能編~
レッスン内容

 

package com.example.DiscoverTravelJPA.repository;

import org.springframework.data.jpa.repository.JpaRepository;
import com.example.DiscoverTravelJPA.entity.News;

@Repository
public interface NewsRepository  extends JpaRepository<News, Integer>{

}

 

★@Repository
 リポジトリであるという事を表す

★JpaRepositoryを継承すると、基本的なCRUDは自動でメソッドが使える様になる
 例)全件取得→List<Entity> findAll() 、 saveAndFlush()→テーブルに登録など(Commitも同時に行われる)

★<News, Integer>
News:Entity
Integer:主キーのデータ型を記述

0% 完了