レッスン内容
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:主キーのデータ型を記述