프로젝트명 : 매장 예약 시스템
프로젝트 기능 소개 :
위 프로젝트를 하는 이유에 대해서 다른 레포지토리 참고해서 하기
요청경로 / 파라미터 / 결과
요쳥경로 : [POST] http://localhost:8080/member파라미터
{
"username" : "jiho",
"password" : "dodlal1234",
"memberStatus" : "PARTNER"
}
결과
{
"id": 33,
"username": "jisu",
"password": "dodlal1234",
"memberStatus": "PARTNER"
}
요청경로 / 파라미터 / 결과
요쳥경로 : [POST] http://localhost:8080/login파라미터
{
"username" : "jisu",
"password" : "dodlal12345"
}
결과
- 성공시
{
"username": "jisu",
"password": null,
"memberStatus": "PARTNER"
}
- 실패시
{
로그인 정보가 올바르지 않습니다.
}
요청경로 / 파라미터 / 결과
요쳥경로 : [POST] http://localhost:8080/store
파라미터
{
"memberId" : 2,
"name" : "testStore5",
"location" : "seoul",
"description" : "test description2"
}
결과
{
"storeId": 39,
"memberId": 2,
"name": "testStore5",
"location": "seoul",
"description": "test description2"
}
요청경로 / 결과
요쳥경로 : [GET] http://localhost:8080/stores?page={currentPage}&size={pageSize}&sort=id,desc
최신 매장부터 조회
결과
{
"totalItems": 4,
"data": [
{
"storeId": 9,
"memberId": 1,
"name": "testStore4",
"location": "seoul",
"description": "test description3"
},
{
"storeId": 5,
"memberId": 1,
"name": "testStore3",
"location": "seoul",
"description": "test description3"
}
],
"totalPages": 2,
"currentPage": 0
}
요청경로 / 결과
요쳥경로 : [GET] http://localhost:8080/store/15
결과
{
"count": 1,
"data": {
"storeId": 15,
"memberId": 2,
"name": "testStore4",
"location": "seoul",
"description": "test description2"
}
}
요청경로 / 파라미터 / 결과
요청경로 : [GET] http://localhost:8080/store/member/1?page={currentPage}&size={pageSize}
파라미터
결과
{
"totalItems": 4,
"data": [
{
"storeId": 3,
"memberId": 1,
"name": "testStore",
"location": "seoul",
"description": "test description"
},
{
"storeId": 4,
"memberId": 1,
"name": "testStore2",
"location": "seoul",
"description": "test description2"
}
],
"totalPages": 2,
"currentPage": 0
}
요청경로 / 파라미터 / 결과
요청경로 : [GET] http://localhost:8080/members/1/owned-stores/reservations?page={currentPage}&size={pageSize}
파라미터
결과
{
"totalItems": 2,
"data": [
{
"storeName": "testStore2",
"reservationMemberName": "jisu",
"createdAt": "2023-08-26T12:19:45.269286",
"reservationAt": "2023-08-18T14:30:00"
}
],
"totalPages": 2,
"currentPage": 1
}
요청경로 / 파라미터 / 결과
요청경로 : [PUT] http://localhost:8080/store/13
파라미터
{
"name" : "update Test Name",
"location" : "update Test location",
"description" : "update test store"
}
결과
{
"storeId": 13,
"memberId": 12,
"name": "update Test Name",
"location": "update Test location",
"description": "update test store"
}
요청경로 / 파라미터 / 결과
요청경로 : [POST] http://localhost:8080/reservation 파라미터
{
"memberId" : 19,
"storeId" : 15,
"reservationStatus" : "REQUESTED",
"time" : "2023-08-18T14:30:00"
}
결과
{
"memberId": 19,
"storeId": 15,
"reservationId": 40,
"time": "2023-08-18T14:30:00",
"reservationStatus": "REQUESTED"
}
요청경로 / 결과
요청경로 : [GET] http://localhost:8080/reservations/member/2?page={currentPage}&size={pageSize}
결과
{
"totalItems": 2,
"data": [
{
"memberId": 2,
"storeId": 3,
"reservationId": 6,
"time": "2023-08-18T14:30:00",
"reservationStatus": "CONFIRMED"
},
{
"memberId": 2,
"storeId": 4,
"reservationId": 7,
"time": "2023-08-18T14:30:00",
"reservationStatus": "REQUESTED"
}
],
"totalPages": 1,
"currentPage": 0
}
요청경로 / 결과
요청경로 : [GET] http://localhost:8080/reservations/store/3?page={currentPage}&size={pageSize}
결과
{
"totalItems": 1,
"data": [
{
"memberId": 2,
"storeId": 3,
"reservationId": 6,
"time": "2023-08-18T14:30:00",
"reservationStatus": "CONFIRMED"
}
],
"totalPages": 1,
"currentPage": 0
}
요청경로 / 결과
요청경로 : [PUT] http://localhost:8080/reservation/cancel?reservationId=21
결과
{
"memberId": 19,
"storeId": 15,
"reservationId": 40,
"time": "2023-08-18T14:30:00",
"reservationStatus": "CONFIRMED"
}
"reservationStatus": "CONFIRMED"으로 변경됨.
요청경로 / 결과
요청경로 : [PUT] http://localhost:8080/reservation/cancel?reservationId=21
결과
{
"memberId": 19,
"storeId": 15,
"reservationId": 40,
"time": "2023-08-18T14:30:00",
"reservationStatus": "CANCELED"
}
"reservationStatus": "CANCELED"으로 변경됨.
요청경로 / 결과
요청경로 : [GET] http://localhost:8080/reservations/without_review/member/2?page={currentPage}&size={pageSize}
결과
{
"totalItems": 0,
"data": [],
"totalPages": 0,
"currentPage": 0
}
요청경로 / 파라미터 / 결과
요쳥경로 : [POST] http://localhost:8080/review
파라미터
{
"memberId" : 19,
"storeId" : 15,
"reservationId" : 51,
"content" : "review test5"
}
결과
{
"memberId": 48,
"storeId": 39,
"reservationId": 51,
"reviewId": 52,
"content": "review test!!@@"
}
요청경로 / 결과
요쳥경로 : [GET] http://localhost:8080/reviews/member/2?page={currentPage}&size={pageSize}
결과
{
"totalItems": 1,
"data": [
{
"memberId": 2,
"storeId": 3,
"reservationId": 6,
"reviewId": 8,
"content": "review test"
}
],
"totalPages": 1,
"currentPage": 0
}
요청경로 / 결과
요쳥경로 : [GET] http://localhost:8080/reviews/store/3?page={currentPage}&size={pageSize}
결과
{
"totalItems": 1,
"data": [
{
"memberId": 2,
"storeId": 3,
"reservationId": 6,
"reviewId": 8,
"content": "review test"
}
],
"totalPages": 1,
"currentPage": 0
}
요청경로 / 파라미터 / 결과
요쳥경로 : [PUT] http://localhost:8080/review/52
파라미터
{
"content": "review content is updated!!"
}
결과
{
"memberId": 48,
"storeId": 39,
"reservationId": 51,
"reviewId": 52,
"content": "review content is updated!!"
}