-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: 도로명주소 API 추가 및 중간 작업 저장 - 비동기 작업을 위해 CompletableFuture 추가 - API에 있던 변환 작업 서비스 레이어로 이동 * feat: rate limiter 및 배치처리를 통한 세부정보 저장 추가 - TPS가 30으로 차후 rate limiter를 조절할 필요가 있음 - 코드 적용이 가능해지면 필요없는 코드 삭제 예정 * feat: 재시도 로직도 비동기로 처리 - 1시간 2분 소요
- Loading branch information
Showing
15 changed files
with
462 additions
and
73 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
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
11 changes: 0 additions & 11 deletions
11
openapi/src/main/java/org/healthmap/openapi/config/JpaConfig.java
This file was deleted.
Oops, something went wrong.
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
42 changes: 42 additions & 0 deletions
42
openapi/src/main/java/org/healthmap/openapi/dto/FacilityDetailJsonDto.java
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package org.healthmap.openapi.dto; | ||
|
||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
import lombok.ToString; | ||
|
||
@Getter | ||
@NoArgsConstructor | ||
@JsonIgnoreProperties(ignoreUnknown = true) | ||
@ToString | ||
public class FacilityDetailJsonDto { | ||
private String code; | ||
private String parkXpnsYn; | ||
private String parkEtc; | ||
private String trmtMonStart; // 진료시간_월_시작 | ||
private String trmtMonEnd; // 진료시간_월_시작 | ||
private String trmtTueStart; | ||
private String trmtTueEnd; | ||
private String trmtWedStart; | ||
private String trmtWedEnd; | ||
private String trmtThuStart; | ||
private String trmtThuEnd; | ||
private String trmtFriStart; | ||
private String trmtFriEnd; | ||
private String trmtSatStart; | ||
private String trmtSatEnd; | ||
private String trmtSunStart; | ||
private String trmtSunEnd; | ||
private String rcvWeek; // 접수시간_평일 | ||
private String rcvSat; // 접수시간_토요일 | ||
private String lunchWeek; // 점심시간_평일 | ||
private String lunchSat; // 점심시간_토 | ||
private String noTrmtSun; // 일요일 휴진 | ||
private String noTrmtHoli; // 공휴일 휴진 | ||
private String emyDayYn; // 주간 응급실 운영 여부 | ||
private String emyNgtYn; // 야간 응급실 운영 여부 | ||
|
||
public void saveCodeIntoDto(String code) { | ||
this.code = code; | ||
} | ||
} |
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
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
Oops, something went wrong.