java excell downloader in spring boot
1. dependency // xls 엑셀 파일 읽기 쓰기 implementation 'org.apache.poi:poi:4.1.2' // xlsx 엑셀 파일 읽기 쓰기 implementation 'org.apache.poi:poi-ooxml:4.1.2' 2. excell writer //column enum @Getter @AllArgsConstructor public enum ReconcileColumnType { PAYMENT_DATE("결제 일자", 0), CANCEL_DATE("취소 일자", 1), PG_REQUEST_KEY("결제 요청 번호", 2), USER_ID("사용자 아이디", 3), PAYMENT_STATUS("결제 상태", 4), PAYMENT_AMOUNT("결제(취소) 금액", 5..
2021. 10. 31.