Spring Boot JPA - Rest API를 강의를 듣고, 게시판 구현 미션을 수행해봅시다.
- datasource : h2 or mysql
-
회원(User)
- id (PK) (auto increment)
- name
- age
- hobby
- created_at
-
게시글(Post)
- id (PK) (auto increment)
- title
- content
- created_at
- created_by
-
회원과 게시글에 대한 연관관계를 설정한다.
- 회원과 게시글은 1:N 관계이다.
-
게시글 Repository를 구현한다. (PostRepository)
- 게시글 조회
- 페이징 조회 (GET "/posts")
- 단건 조회 (GET "/posts/{id}")
- 게시글 작성 (POST "/posts")
- 게시글 수정 (POST "/posts/{id}")