Skip to content

wkdehdgk159/Spring-ToDoApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spring-ToDoApp Documentation



ERD Diagram(by erdcloud)

erd

API Spec

api spec

Function

  1. 회원가입 API POST - (/api/user/signup)

x-www-form-urlencoded 데이터로 username - dongha password - 11111111

  1. 로그인 API POST - (/api/user/login) 로그인은 body raw-json으로 { "username":"dongha", "password":"11111111" } { "username":"dongha2", "password":"22222222" } 토큰은 Headers에 authorization - 받은 토큰값(bearer 포함)으로 보내면된다.

  2. 할일카드 작성 기능 API POST - (/api/todocards) todocard create { "title":"donghas title", "contents":"Good Day!" }

  3. 선택한 할일카드 조회 기능 API GET - (/api/todocards/{id}) Path variable 방식

  4. 할일카드 목록 조회 기능 API GET - (/api/todocards) 작성일 기준 내림차순

  5. 선택한 할일카드 수정 기능 API PUT - (/api/todocards/{id})

  6. 할일카드 완료 기능 API PUT - (/api/todocards/{id}/{complete}) complete 자리에 true, false 넣기

  7. 댓글 작성 API POST - (/api/todocards/{id}/comments) { "contents":"Faker" }

  8. 댓글 수정 API PUT - (/api/todocards/comments/{id})

  9. 댓글 삭제 API DELETE (/api/todocards/comments/{id})

  10. 예외 처리 (ResponseEntity 사용)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages