백기선(2)
-
스프링 부트 - 다양한 설정 (debug, 배너)
VM option 에 DEBUG설정 기본 옵션으로 Application을 구동하면 이렇게 INFO만 찍혀나온다. 하지만 Run/Debug Configurations에 들어가 VM options 에 -Ddebug를 설정해주면 아래와 같이 DEBUG가 같이 찍혀나온다. 어떠한 자동설정이 적용됐는지 그리고 자동설정이 왜 적용이 안되었는지 나온다. 배너설정 src/main/resources 디렉토리에 banner.txt 파일을 만든후 위와 같이 자기가 원하는대로 작성. 아래와 같이 자신이 만든 배너가 뜬다 배너 관련 스프링 문서. docs.spring.io/spring-boot/docs/current/reference/html/spring-boot-features.html#boot-features-spring-..
2020.10.20 -
Java - Date와 Time Api
13. Date와 Time API 지금 이 순간을 기계 시간으로 표현하는 방법 ● Instant.now(): 현재 UTC (GMT)를 리턴한다. ● Universal Time Coordinated == Greenwich Mean Time 인류용 일시를 표현하는 방법 ● LocalDateTime.now(): 현재 시스템 Zone에 해당하는(로컬) 일시를 리턴한다. ● LocalDateTime.of(int, Month, int, int, int, int): 로컬의 특정 일시를 리턴한다. ● ZonedDateTime.of(int, Month, int, int, int, int, ZoneId): 특정 Zone의 특정 일시를 리턴한다. 기간을 표현하는 방법 ● Period / Duration . beteen() ..
2020.09.27