[IC2_BE] 이철한 - 설문 조사 서비스 과제#21
Open
devch37 wants to merge 34 commits into
Open
Conversation
devch37
commented
Dec 6, 2024
Comment on lines
+26
to
+61
| subprojects { | ||
| group = "com.ic" | ||
| version = "0.0.1-SNAPSHOT" | ||
| val kotlinJacksonDateTimeVersion by properties | ||
|
|
||
| repositories { | ||
| mavenCentral() | ||
| } | ||
|
|
||
| apply(plugin = "java") | ||
| apply(plugin = "kotlin") | ||
| apply(plugin = "kotlin-spring") | ||
| apply(plugin = "org.jlleitschuh.gradle.ktlint") | ||
|
|
||
| if (project.name != "survey-core") { | ||
| apply(plugin = "org.springframework.boot") | ||
| apply(plugin = "io.spring.dependency-management") | ||
|
|
||
| dependencies { | ||
| testImplementation("org.springframework.boot:spring-boot-starter-test") | ||
| } | ||
| } | ||
|
|
||
| dependencies { | ||
| implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.4.0") | ||
| implementation("org.jetbrains.kotlin:kotlin-reflect") | ||
|
|
||
| testImplementation("io.kotest.extensions:kotest-extensions-spring:1.1.2") | ||
| testImplementation("io.kotest:kotest-runner-junit5:5.5.0") | ||
| testImplementation("io.kotest:kotest-assertions-core:5.5.0") | ||
| testImplementation("io.kotest:kotest-property:5.5.0") | ||
| } | ||
|
|
||
| tasks.test { | ||
| useJUnitPlatform() | ||
| } |
Author
There was a problem hiding this comment.
멀티 모듈에서 종속성 관리가 쉽지 않다는 걸 느꼇습니다 ㅎㅎ !
devch37
commented
Dec 6, 2024
| package survey.exception | ||
|
|
||
| enum class CustomHttpStatusCode(val code: Int, val message: String) { | ||
| // 1xx: Informational |
Author
There was a problem hiding this comment.
core 모듈이 스프링의 종속적이지 않다보니 스프링의 HttpStatus 클래스를 사용 못하였습니다 ! 설계 미스 인 것 같습니다 ... !
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
ERD
모듈 설명
프로젝트 후기
이번에 프로젝트를 진행하면서 저에게는 아쉬운 마음이 굉장히 컸었던 프로젝트 였던 것 같습니다 ! 2주 라는 시간 동안 프로젝트를 진행 하면서 느낀점은 몇가지가 있습니다. 첫번째는 직장과 병행하면서 진행하기가 쉽지 않다였고 요새 야근이 없었는데 요즘 좀 야근 한다고 시간 내는게 많이 힘들었었네요 ㅜㅜ ! 두 번째는 제가 정말 많이 부족하다고 많이 느꼇습니다. JPA 를 실무에서는 사용해보지 않고 제가 예전에 개인적으로 공부할 때 조금 사용해 보았지만 사용하기가 쉽지 않았습니다 ㅜㅜ ! 공부를 열심히 해야겠다고 느꼇던 프로젝트였고 무사 수료 할 수 있도록 최선을 다하도록 하겠습니다 ㅎㅎ ! 다행히 다음주 부터는 야근이 조금 ... ?! 줄어 들 수 있을 것 같기도 해서 (제발 ..) 프로젝트에 집중 할 수 있을 것 같습니다 ㅎㅎ !설계 시 아쉬 운 점
다음 프로젝트 시 향상 시키고 싶은 것
구현 API (많이 미흡합니다 ㅜㅜ)