- devtools
- spring web (mvc)
- mustache
- lombok
- jpa
- mariadb
- security
- validation
CREATE USER 'green'@'%' IDENTIFIED BY 'green1234';
CREATE DATABASE greendb;
GRANT ALL PRIVILEGES ON greendb.* TO 'green'@'%';
localhost:8080/ (메인페이지 - 글 있는 곳 아님)
localhost:8080/user/{userId}/post
localhost:8080/user/{userId}/post/{postId}
localhost:8080/user/{userId}/category/{title}
Visit
id
userId
totalCount
createDate
updateDate
User
id
username
password
createDate
updateDate
Post
id
title
content
thumnail
userId
categoryId
createDate
updateDate
Like
id
postId
userId
createDate
updateDate
Category
id
title
userId
createDate
updateDate
-
카테고리 등록
-
글쓰기
-
글목록보기
-
페이징
-
글상세보기
-
검색
-
글삭제
-
글수정
-
댓글 (라이브러리 사용)
-
프로필 사진 업로드 (회원가입시)
-
회원수정
'''txt ./gradlew --refresh-dependencie '''