This commit is contained in:
jinho jeong
2022-04-15 17:23:31 +09:00
parent 2de7cc13b1
commit 6c7952fbf0
2 changed files with 9 additions and 2 deletions

View File

@@ -1,7 +1,12 @@
# 오늘(ONeul)
하루살이 SNS
## 목표
## 개발 목표
- Spring Batch를 사용하여 24시간 지난 게시물 삭제
- Session을 사용한 사용자 관리
- OOP가 적용된 구조
## 구조
## 구조
## 실행 방법
```bash
gradle bootJar
java -jar build/libs/oneul-0.0.1-SNAPSHOT.jar
```

View File

@@ -2,8 +2,10 @@ plugins {
id 'org.springframework.boot' version '2.6.6'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id 'application'
}
mainClassName = 'com.example.oneul.OneulApplication'
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'