Repository files navigation
IDE : IntelliJ
Spring Boot
JDK 11
mysql
Spring Data JPA
Thymeleaf
로그인 (/member/login)
로그아웃 (/member/logout)
회원가입 (/member/save)
회원조회 (/member/{id})
정보수정 (/member/update/{id})
정보삭제 (/member/delete/{id})
글쓰기 (/board/save)
글목록 (/board/)
글조회 (/board/{id})
글수정 (/board/update/{id})
글삭제 (/board/delete/{id})
글쓰기 (/board/api/save) (POST)
{
"boardWriter": "jyj",
"boardPass": "jyj",
"boardTitle": "jyj",
"boardContents": "jyj"
}
글목록 (/board/api/) (GET)
글조회 (/board/api/{id}) (GET)
글수정 (/board/api/update/{id}) (POST)
{
"id" : 1,
"boardWriter": "jyj",
"boardPass": "jyj",
"boardTitle": "jyj",
"boardContents": "jyj"
}
글삭제 (/board/api/delete/{id}) (POST)
회원가입 (/member/api/save) (POST)
2. {
"memberEmail": "qt",
"memberPassword": "123",
"memberName": "qt"
},
회원목록 (/member/api/) (GET)
회원조회 (/member/api/{id}) (GET)
정보수정 (/member/api/update/{id}) (POST)
{
"id": 13,
"memberEmail": "qt",
"memberPassword": "123",
"memberName": "qt"
},
글삭제 (/member/api/delete/{id}) (POST)
About
spring 회원관리 project
Topics
Resources
Stars
Watchers
Forks
You can’t perform that action at this time.