1. 게시글
+1.1. 게시글 생성
+1.1.1. [POST] /api/v1/posts
+POST /api/v1/posts HTTP/1.1
+Content-Type: application/json;charset=UTF-8
+Content-Length: 48
+Host: localhost:8080
+
+{"title":"title","content":"content","userId":1}
+Path | +Type | +Description | +
---|---|---|
|
+
|
+제목 |
+
|
+
|
+내용 |
+
|
+
|
+유저 id |
+
HTTP/1.1 201 Created
+Location: /api/v1/posts/1
+1.2. 게시글 조회
+1.2.1. [GET] /api/v1/posts/{id}
+GET /api/v1/posts/1 HTTP/1.1
+Host: localhost:8080
+HTTP/1.1 200 OK
+Content-Type: application/json
+Content-Length: 55
+
+{"id":1,"title":"title","content":"content","userId":1}
+Path | +Type | +Description | +
---|---|---|
|
+
|
+게시글 id |
+
|
+
|
+제목 |
+
|
+
|
+내용 |
+
|
+
|
+유저 id |
+
1.3. 게시글 페이지 조회
+1.3.1. [GET] /api/v1/posts?page={page}&size={size}&sort={sort}
+GET /api/v1/posts?page=0&size=2&sort=id%2Cdesc HTTP/1.1
+Host: localhost:8080
+HTTP/1.1 200 OK
+Content-Type: application/json
+Content-Length: 236
+
+{"data":[{"id":2,"title":"title2","content":"content2","userId":1},{"id":1,"title":"title1","content":"content1","userId":1}],"pageable":{"first":true,"last":false,"number":0,"size":2,"sort":"id: DESC","totalPages":2,"totalElements":3}}
+Path | +Type | +Description | +
---|---|---|
|
+
|
+데이터 |
+
|
+
|
+게시글 id |
+
|
+
|
+제목 |
+
|
+
|
+내용 |
+
|
+
|
+유저 id |
+
|
+
|
+처음 페이지 여부 |
+
|
+
|
+마지막 페이지 여부 |
+
|
+
|
+페이지 번호 |
+
|
+
|
+페이지 당 게시글 개수 |
+
|
+
|
+정렬 기준 |
+
|
+
|
+전체 페이지 수 |
+
|
+
|
+전체 게시글 수 |
+
1.4. 게시글 수정
+1.4.1. [PATCH] /api/v1/posts/{id}
+PATCH /api/v1/posts/1 HTTP/1.1
+Content-Type: application/json;charset=UTF-8
+Content-Length: 45
+Host: localhost:8080
+
+{"title":"new-title","content":"new-content"}
+Path | +Type | +Description | +
---|---|---|
|
+
|
+제목 |
+
|
+
|
+내용 |
+
HTTP/1.1 204 No Content
+Location: /api/v1/posts/1
+1.5. 게시글 삭제
+1.5.1. [DELETE] /api/v1/posts/{id}
+DELETE /api/v1/posts/1 HTTP/1.1
+Host: localhost:8080
+HTTP/1.1 204 No Content
+