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인지 알수 없다.