0
CRUD는 create, read, update, and delete을 나타냅니다.Spring-Data-JPA CrudRepository에서 "C"의 역할은 무엇입니까?
그래서 "C"는 "생성"을 나타냅니다.
CrudRepository
의 어떤 방법으로 "C"를 재생할 수 있습니까?
CRUD는 create, read, update, and delete을 나타냅니다.Spring-Data-JPA CrudRepository에서 "C"의 역할은 무엇입니까?
그래서 "C"는 "생성"을 나타냅니다.
CrudRepository
의 어떤 방법으로 "C"를 재생할 수 있습니까?
기존 엔티티 (병합)를 업데이트하거나 새로 생성 된 것을 유지할 수있는 것은 CrudRepository#save입니다.