PostRepo 인터페이스

jb kim·2022년 3월 2일
0

REST API 블로그 앱

목록 보기
13/65
public interface PostRepository extends JpaRepository<Post, Long>{

}

왜 id Long 타입?
https://www.inflearn.com/questions/35759

Primitive 타입은 null이 될 수 없기 때문에, null 값을 정확하게 처리하기 위해서 Wrapper 클래스를 사용한다.
id==null 으로 비교 가능 int 는 null값이 안되고 0이기 때문에 숫자가 0인지 null인지 알수 없다.

profile
픽서

0개의 댓글