Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions project/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
.gradle
build/
!gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/
!**/src/test/**/build/

### IntelliJ IDEA ###
.idea/modules.xml
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
*.iws
*.iml
*.ipr
out/
!**/src/main/**/out/
!**/src/test/**/out/

### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/
!**/src/main/**/bin/
!**/src/test/**/bin/

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store
8 changes: 8 additions & 0 deletions project/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions project/.idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions project/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions project/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

43 changes: 43 additions & 0 deletions project/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
plugins {
id 'java'
}

group = 'jpabook'
version = '1.0-SNAPSHOT'

repositories {
mavenCentral()
}

dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation("org.assertj:assertj-core:3.26.3")

// Mockito core
testImplementation 'org.mockito:mockito-core:4.8.0'

// Mockito JUnit Jupiter support
testImplementation 'org.mockito:mockito-junit-jupiter:4.8.0'

// Lombok
implementation 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'

// Jackson Databind (ObjectMapper 포함)
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.3'

// SLF4J API
implementation 'org.slf4j:slf4j-api:1.7.36'

// Logback을 SLF4J 구현으로 사용하는 경우
implementation 'ch.qos.logback:logback-classic:1.2.11'

implementation 'org.json:json:20220924'


}

test {
useJUnitPlatform()
}
1 change: 1 addition & 0 deletions project/db/wiseSaying/1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"author":"1","id":1,"content":"1"}
1 change: 1 addition & 0 deletions project/db/wiseSaying/2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"author":"2","id":2,"content":"2"}
1 change: 1 addition & 0 deletions project/db/wiseSaying/3.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"author":"3","id":3,"content":"3"}
1 change: 1 addition & 0 deletions project/db/wiseSaying/4.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"author":"4","id":4,"content":"4"}
1 change: 1 addition & 0 deletions project/db/wiseSaying/5.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"author":"5","id":5,"content":"5"}
1 change: 1 addition & 0 deletions project/db/wiseSaying/6.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"author":"6","id":6,"content":"6"}
1 change: 1 addition & 0 deletions project/db/wiseSaying/7.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"author":"7","id":7,"content":"7"}
1 change: 1 addition & 0 deletions project/db/wiseSaying/data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[{"author":"작자미상","id":2,"content":"으으으음"},{"author":"몰라","id":1,"content":"재우"}]
1 change: 1 addition & 0 deletions project/db/wiseSaying/lastId.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
4
Binary file added project/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
6 changes: 6 additions & 0 deletions project/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#Thu Dec 19 09:26:26 KST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading