-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[2단계 - 최단 경로 및 요금 조회 api] 주드 미션 제출합니다. (#102)
* feat: 노선 삭제 및 테스트케이스 추가 * feat: 노선 삭제 예외 처리 * feat: 중복 이름 추가 시 예외 처리 * refactor: 역 추가 분기 제거 * feat: 최단 거리 및 경로 계산 * feat: 최단 경로 및 요금 조회 기능 * chore: 테스트와 db 분리 * docs: 문서 추가 * chore : package 구분 * feat: 기타 예외 처리 추가 * feat: request 검증 추가 * refactor: 조회에 readonly 추가 * chore: h2로 설정 변경 * refactor: 상속으로 라이브러리 사용 분리 * chore * refactor: polishing * fix: 역을 삭제하면 모든 노선에서 삭제 * refactor: rename * refactor: polishing 및 테스트 * test: test 포맷 수정 * test: test 추가 * refactor: polishing * docs: 기능 정리 * feat: 없는 지하철역 예외 처리 및 테스트 추가 * refactor: 최단 경로 계산 구조 변경 * refactor: 요금 계산 로직 수정 * chore: 데이터베이스 세팅 수정 * refactor: 이름 수정 * test: 인수테스트 전면 수정 * docs: 요구사항 추가 * refactor: polishing * test: 인수테스트 이름 수정 * refactor: depricated 제거 * refactor: slf4j 의존성 추가 * refactor: 에러 로그 추가 * refactor: polishing * refactor: response, request 기본 생성자 추가 * refactor: shortestPathResponse로 변경
- Loading branch information
Showing
75 changed files
with
2,200 additions
and
630 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,34 @@ | ||
plugins { | ||
id 'java' | ||
id 'org.springframework.boot' version '2.7.9' | ||
id 'io.spring.dependency-management' version '1.0.15.RELEASE' | ||
id 'java' | ||
id 'org.springframework.boot' version '2.7.9' | ||
id 'io.spring.dependency-management' version '1.0.15.RELEASE' | ||
} | ||
|
||
sourceCompatibility = '11' | ||
|
||
repositories { | ||
mavenCentral() | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
implementation 'org.springframework.boot:spring-boot-starter-web' | ||
implementation 'org.springframework.boot:spring-boot-starter-jdbc' | ||
implementation 'org.springframework.boot:spring-boot-starter-web' | ||
implementation 'org.springframework.boot:spring-boot-starter-jdbc' | ||
implementation 'org.springframework.boot:spring-boot-starter-validation' | ||
implementation 'org.jgrapht:jgrapht-core:1.5.2' | ||
implementation 'org.slf4j:slf4j-api:1.7.25' | ||
implementation 'org.projectlombok:lombok' | ||
|
||
implementation 'net.rakugakibox.spring.boot:logback-access-spring-boot-starter:2.7.1' | ||
testAnnotationProcessor 'org.projectlombok:lombok' | ||
annotationProcessor 'org.projectlombok:lombok' | ||
|
||
testImplementation 'io.rest-assured:rest-assured:4.4.0' | ||
testImplementation 'org.springframework.boot:spring-boot-starter-test' | ||
implementation 'net.rakugakibox.spring.boot:logback-access-spring-boot-starter:2.7.1' | ||
|
||
runtimeOnly 'com.h2database:h2' | ||
testImplementation 'io.rest-assured:rest-assured:4.4.0' | ||
testImplementation 'org.springframework.boot:spring-boot-starter-test' | ||
|
||
runtimeOnly 'com.h2database:h2' | ||
} | ||
|
||
test { | ||
useJUnitPlatform() | ||
} | ||
useJUnitPlatform() | ||
} |
Binary file not shown.
Oops, something went wrong.