Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
5a926d8
[BE] (feat) 초기 설정
haramm Nov 14, 2023
78f0e04
[BE] (feat) userVO 구현
haramm Nov 15, 2023
860f357
[BE] (feat) UserDAO 구현
haramm Nov 15, 2023
4b8aa81
[BE] (feat) ItemVO 구현
haramm Nov 15, 2023
bbccc7b
[BE] (feat) ItemDAO 구현
haramm Nov 15, 2023
7343d42
[BE] (feat) 실행 메소드 구현
haramm Nov 15, 2023
6680ffd
[BE] (feat) 초기 생성 커밋
haramm Nov 15, 2023
925758c
[BE] (feat) RateDiscountPolicy 클래스 구현
haramm Nov 15, 2023
a175217
[BE] (docs) ANSWER.md 파일 수정
haramm Nov 16, 2023
284c445
[BE] (fix) build.gradle 오류 수정
haramm Nov 16, 2023
a52c8f2
[BE] (perf) RateDiscountPolicy pr 반영하여 수정
haramm Nov 17, 2023
dca68fc
[BE] (fix) 할인 계산값 오류 수정
haramm Nov 18, 2023
fe21e68
[BE] (refactor) 기존 고정할인 정률할인으로 변경
haramm Nov 18, 2023
d7ff81b
[BE] (refactor) 정률할인 확인하기위한 가격수정
haramm Nov 18, 2023
7b64e08
[BE] (refactor) Order 일부 메소드 삭제, getter,setter 생성
haramm Nov 18, 2023
783c84c
Merge branch 'FX-STUDY:main' into haram
haramm Nov 20, 2023
d170b17
[BE] (build) Lombok dependency 지정
haramm Nov 20, 2023
f4c1313
[BE] (refactor) Lombok 사용에 따른 코드 변경
haramm Nov 20, 2023
0543e5a
[BE] (docs) Answer.md 파일 수정
haramm Nov 23, 2023
15f5c4b
[BE] (refactor) RateDiscountPolicy 기능 수정
haramm Nov 23, 2023
bbdd48c
[BE] (refactor) FixDiscountPolicy 수정
haramm Nov 23, 2023
57fb184
[BE] (refactor) OrderServiceImpl 수정
haramm Nov 23, 2023
1f8b51f
Merge branch 'FX-STUDY:main' into haram
haramm Nov 27, 2023
c32e532
[BE] (feat) 초기설정
haramm Dec 1, 2023
80bf15a
Merge branch 'FX-STUDY:main' into haram
haramm Dec 15, 2023
81015c1
[BE] (feat) 초기 재설정
haramm Dec 15, 2023
e048b7f
[BE] (feat) itemVO 생성
haramm Dec 16, 2023
89a753a
[BE] (feat) Controller 임시 구현
haramm Dec 16, 2023
e2459ed
[BE] (feat) itemList html생성
haramm Dec 16, 2023
40eda90
[BE] (feat) itemAddForm 생성
haramm Dec 16, 2023
f61ea2e
[BE] (feat) itemDetail html 생성
haramm Dec 16, 2023
3b933a3
[BE] (feat) itemFixForm html 생성
haramm Dec 16, 2023
7c379ee
[BE] (refactor) Controller 구현
haramm Dec 21, 2023
3a7aefb
[BE] (feat) itemRepository 구현
haramm Dec 21, 2023
09ade43
[BE] (refactor) itemList html thymeleaf 사용하여 리팩터링
haramm Dec 21, 2023
e728a9f
[BE] (refactor) Item 클래스 리팩터링
haramm Dec 21, 2023
e310fdd
Merge branch 'FX-STUDY:main' into haram
haramm Dec 30, 2023
34fd9ce
[BE] (docs) 7 WEEK MISSION.md 파일 수정
haramm Dec 31, 2023
0268a46
Merge branch 'FX-STUDY:main' into haram
haramm Jan 9, 2024
a714a01
[BE] (docs) 8Week mission.md Study 요약
haramm Jan 9, 2024
d3630ac
[BE] (refactor) 9 WEEK mission.md 파일 9주차 추가 등록하여 수정
haramm Jan 10, 2024
473401b
[BE] (feat) 초기 pull request 설정
haramm Jan 26, 2024
76efc8e
[BE] (feat) StudentController 구현
haramm Jan 28, 2024
1e87761
[BE] (feat) StudentRepository 구현
haramm Jan 28, 2024
f158a25
[BE] (feat) student VO 생성
haramm Jan 28, 2024
00b3327
[BE] (feat) StudentService 구현
haramm Jan 28, 2024
1168a04
Merge branch 'FX-STUDY:main' into haram
haramm Feb 1, 2024
928d1c5
[BE] (feat) 11WEEK MISSION 리팩터링 전 초기 버전 저장
haramm Feb 1, 2024
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
5 changes: 5 additions & 0 deletions .idea/.name

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

37 changes: 37 additions & 0 deletions 10 WEEK/hello/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
HELP.md
.gradle
build/
!gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/
!**/src/test/**/build/

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

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
out/
!**/src/main/**/out/
!**/src/test/**/out/

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

### VS Code ###
.vscode/
38 changes: 38 additions & 0 deletions 10 WEEK/hello/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.8'
id 'io.spring.dependency-management' version '1.1.4'
}

group = 'com.example'
version = '0.0.1-SNAPSHOT'

java {
sourceCompatibility = '17'
}

configurations {
compileOnly {
extendsFrom annotationProcessor
}
}

repositories {
mavenCentral()
}

dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}

tasks.named('bootBuildImage') {
builder = 'paketobuildpacks/builder-jammy-base:latest'
}

tasks.named('test') {
useJUnitPlatform()
}
Binary file added 10 WEEK/hello/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
7 changes: 7 additions & 0 deletions 10 WEEK/hello/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
249 changes: 249 additions & 0 deletions 10 WEEK/hello/gradlew

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

Loading