게시판 생성하기
+Request
+POST /api/v1/boards HTTP/1.1
+Content-Type: application/json;charset=UTF-8
+Content-Length: 66
+Host: localhost:8080
+
+{
+ "title" : "title",
+ "content" : "content",
+ "memberId" : 2
+}
+Response
+HTTP/1.1 201 Created
+Content-Type: text/plain;charset=UTF-8
+Content-Length: 14
+
+testMemberName
+게시판 단건 조회하기
+Request
+GET /api/v1/boards/9 HTTP/1.1
+Host: localhost:8080
+Response
+HTTP/1.1 200 OK
+Content-Type: application/json
+Content-Length: 198
+
+{
+ "title" : "title",
+ "content" : "content",
+ "createdAt" : "2023-08-01T17:55:14.624693",
+ "modifiedAt" : "2023-08-01T17:55:14.624693",
+ "createdBy" : "testMemberName",
+ "modifiedBy" : null
+}
+게시판 페이지 조회하기
+Request
+GET /api/v1/boards?page=1&size=2 HTTP/1.1
+Host: localhost:8080
+Response
+HTTP/1.1 200 OK
+Content-Type: application/json
+Content-Length: 206
+
+[ {
+ "title" : "t2",
+ "createdAt" : "2023-08-01T17:55:14.500436",
+ "createdBy" : "testMemberName"
+}, {
+ "title" : "t3",
+ "createdAt" : "2023-08-01T17:55:14.500543",
+ "createdBy" : "testMemberName"
+} ]
+게시판 수정하기
+Request
+PUT /api/v1/boards/1 HTTP/1.1
+Content-Type: application/json;charset=UTF-8
+Content-Length: 66
+Host: localhost:8080
+
+{
+ "title" : "title",
+ "content" : "content",
+ "memberId" : 1
+}
+Response
+HTTP/1.1 200 OK
+Content-Type: text/plain;charset=UTF-8
+Content-Length: 14
+
+testMemberName
+