티스토리 뷰

Accessing data with MySQL(using JPA) 

공식 가이드로 진행중이다.

크게 다음 세 축으로 구성한다.

 

Entity Model & Repository & Controller

 

모델을 설정하고, 데이터는 레포지토리에 저장하며, CRUD HTTP 요청은 Controller 에서 진행한다.

관련된 import 하는 요소들이 무척 많아서 이틀째 잡고있다.

 

Controller 에서 CRUD Repository의 메서드를 사용하여 데이터를 조작한다.

 

 

CrudRepository (Spring Data Core 2.6.0 API)

Returns all instances of the type T with the given IDs. If some or all ids are not found, no entities are returned for these IDs. Note that the order of elements in the result is not guaranteed.

docs.spring.io

 

관련한 정보들이 많아서 따로 깃헙에 정리하고 있다.

'Spring' 카테고리의 다른 글

Intellij Tip  (0) 2022.01.20
JpaRepository + PagingAndSortingRepository + CrudRepository  (0) 2022.01.20
SpringBoot(JPA) vs. Django  (0) 2022.01.20
Bean 유효성 검사 제약 조건 사용  (0) 2022.01.07
DDD 를 기반으로 한 Spring Data JDBC  (0) 2022.01.03
댓글