Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- javasecurity
- AWS요금
- 오라클 c##제거
- html주문폼
- 깃헙 데스크탑
- AWS경보
- TCP/IP
- AWS사용자
- jsp에러
- 소켓통신
- springboot
- MFC
- AWS 청구
- Update
- hmlt
- JPA
- aws
- html사용자함수
- oracle 18
- C++
- jsNature
- js구구단
- git stah
- IAM 결제
- IP통신
- hit desktop
- bootstrap
- SpringToolSuite4
- web browser external
- servlet에러
Archives
- Today
- Total
Ynns
String 타입 날짜 Date 타입 비교 본문
DateTimeFomatter 사용해서 날짜 형식 잡기
> LocalDateTime.now() 현재 시간 잡기
> isBefore 사용해서 비교
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
LocalDateTime currentDay = LocalDateTime.now();
//각 매장의 마감여부 관계없는 배송일 날짜/배송시간/회차 조회
Map<String,Object> mapDeliveryday = batchOrderMapper.getDeliverydayMatch(paramMap);
if (mapDeliveryday != null) {
...
nearClosingday = mapDeliveryday.get("closingday") == null ? nearClosingday : (String) mapDeliveryday.get("closingday");
...
LocalDateTime closingDate = LocalDateTime.parse(nearClosingday, formatter);
if(!currentDay.isBefore(closingDate)){
throw new AlertException("주문이 마감된 매장이 있습니다, 확인 후 다시 첨부해주세요.");
}
}
'JAVA' 카테고리의 다른 글
jsp servlet 에러 해결 / Could not launch external web browser for ~ (0) | 2021.07.06 |
---|---|
Excel outputstream 엑셀 파일로 데이터 저장, 쓰기 (1) | 2021.06.05 |
자주 사용하는 GIT 명령어 (0) | 2020.04.01 |
Comments