DBILITY

java summer time ( daylight saving time, DST ) 본문

java/basic

java summer time ( daylight saving time, DST )

DBILITY 2017. 12. 16. 22:39
반응형

일광절약시간제(Daylight saving time, DST)가 적용되는 지역의 시간을 설정해야 할 일이 있어 테스트 했다.

2007년 새로운 에너지 관련법의 시행에 따라 3월 둘째 주 일요일 오전 2시(동부시각 기준)부터 시작해 11월 첫번째 일요일 오전 2시까지다.

 

package com.dbility.batch;
 
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.TimeZone;
 
import org.apache.commons.lang.time.FastDateFormat;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
 
public class TimeZoneTest {
 
    private static final Logger log = LoggerFactory.getLogger(TimeZoneTest.class);
 
    public static void main(String[] args) throws ParseException {
 
        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
 
        //String dateStr = "2017-03-12 16:00:00";
        //String dateStr = "2017-11-05 13:59:59";
        //String dateStr = "2017-11-05 14:59:59";
        //String dateStr = "2017-11-05 13:30:59";
        String dateStr = "2017-11-05 14:30:59";
        Date date = dateFormat.parse(dateStr);
 
        TimeZone tz = TimeZone.getDefault();
 
        log.info("TimeZone {}, {}", tz.getID(),tz.getDisplayName());
        log.info("TimeZone {}", tz);
        log.info("Date {},{}", dateFormat.format(date),tz.inDaylightTime(date));
        log.info("Date {}", FastDateFormat.getInstance("yyyy-MM-dd HH:mm:ss (z Z)", tz).format(date));
 
        tz = TimeZone.getTimeZone("EST");
        dateFormat.setTimeZone(tz);
 
        log.info("TimeZone {}, {}", tz.getID(),tz.getDisplayName());
        log.info("TimeZone {}", tz);
        log.info("Date {},{}", dateFormat.format(date),tz.inDaylightTime(date));
        log.info("Date {}", FastDateFormat.getInstance("yyyy-MM-dd HH:mm:ss (z Z)", tz).format(date));
 
        tz = TimeZone.getTimeZone("US/Eastern");
        dateFormat.setTimeZone(tz);
 
        log.info("TimeZone {}, {}", tz.getID(),tz.getDisplayName());
        log.info("TimeZone {}", tz);
        log.info("Date {},{}", dateFormat.format(date),tz.inDaylightTime(date));
        log.info("Date {}", FastDateFormat.getInstance("yyyy-MM-dd HH:mm:ss (z Z)", tz).format(date));
 
        tz = TimeZone.getTimeZone("America/New_York");
        dateFormat.setTimeZone(tz);
 
        log.info("TimeZone {}, {}", tz.getID(),tz.getDisplayName());
        log.info("TimeZone {}", tz);
        log.info("Date {},{}", dateFormat.format(date),tz.inDaylightTime(date));
        log.info("Date {}", FastDateFormat.getInstance("yyyy-MM-dd HH:mm:ss (z Z)", tz).format(date));
 
        log.info("Now Date {},{}", dateFormat.format(new Date()),tz.inDaylightTime(new Date()));
        log.info("Now Date {}", FastDateFormat.getInstance("yyyy-MM-dd HH:mm:ss (z Z)", tz).format(new Date()));
 
        String[] ids = TimeZone.getAvailableIDs();
 
        for (String id : ids) {
            TimeZone.getTimeZone(id);
            log.info("{}", id);
        }
    }
}

실행결과

13:04:52.178 INFO  com.dbility.batch.TimeZoneTest - TimeZone Asia/Seoul, 한국 표준시
13:04:52.183 INFO  com.dbility.batch.TimeZoneTest - TimeZone sun.util.calendar.ZoneInfo[id="Asia/Seoul",offset=32400000,dstSavings=0,useDaylight=false,transitions=22,lastRule=null]
13:04:52.183 INFO  com.dbility.batch.TimeZoneTest - Date 2017-11-05 14:30:59,false
13:04:52.201 INFO  com.dbility.batch.TimeZoneTest - Date 2017-11-05 14:30:59 (KST +0900)
13:04:52.202 INFO  com.dbility.batch.TimeZoneTest - TimeZone EST, 동부 표준시
13:04:52.202 INFO  com.dbility.batch.TimeZoneTest - TimeZone sun.util.calendar.ZoneInfo[id="EST",offset=-18000000,dstSavings=0,useDaylight=false,transitions=0,lastRule=null]
13:04:52.202 INFO  com.dbility.batch.TimeZoneTest - Date 2017-11-05 00:30:59,false
13:04:52.202 INFO  com.dbility.batch.TimeZoneTest - Date 2017-11-05 00:30:59 (EST -0500)
13:04:52.204 INFO  com.dbility.batch.TimeZoneTest - TimeZone US/Eastern, 동부 표준시
13:04:52.204 INFO  com.dbility.batch.TimeZoneTest - TimeZone sun.util.calendar.ZoneInfo[id="US/Eastern",offset=-18000000,dstSavings=3600000,useDaylight=true,transitions=235,lastRule=java.util.SimpleTimeZone[id=US/Eastern,offset=-18000000,dstSavings=3600000,useDaylight=true,startYear=0,startMode=3,startMonth=2,startDay=8,startDayOfWeek=1,startTime=7200000,startTimeMode=0,endMode=3,endMonth=10,endDay=1,endDayOfWeek=1,endTime=7200000,endTimeMode=0]]
13:04:52.204 INFO  com.dbility.batch.TimeZoneTest - Date 2017-11-05 01:30:59,true
13:04:52.205 INFO  com.dbility.batch.TimeZoneTest - Date 2017-11-05 01:30:59 (EDT -0400)
13:04:52.205 INFO  com.dbility.batch.TimeZoneTest - TimeZone America/New_York, 동부 표준시
13:04:52.205 INFO  com.dbility.batch.TimeZoneTest - TimeZone sun.util.calendar.ZoneInfo[id="America/New_York",offset=-18000000,dstSavings=3600000,useDaylight=true,transitions=235,lastRule=java.util.SimpleTimeZone[id=America/New_York,offset=-18000000,dstSavings=3600000,useDaylight=true,startYear=0,startMode=3,startMonth=2,startDay=8,startDayOfWeek=1,startTime=7200000,startTimeMode=0,endMode=3,endMonth=10,endDay=1,endDayOfWeek=1,endTime=7200000,endTimeMode=0]]
13:04:52.205 INFO  com.dbility.batch.TimeZoneTest - Date 2017-11-05 01:30:59,true
13:04:52.205 INFO  com.dbility.batch.TimeZoneTest - Date 2017-11-05 01:30:59 (EDT -0400)
13:04:52.205 INFO  com.dbility.batch.TimeZoneTest - Now Date 2017-12-26 23:04:52,false
13:04:52.205 INFO  com.dbility.batch.TimeZoneTest - Now Date 2017-12-26 23:04:52 (EST -0500)
13:04:52.206 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT+12
13:04:52.207 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT+11
13:04:52.207 INFO  com.dbility.batch.TimeZoneTest - Pacific/Midway
13:04:52.208 INFO  com.dbility.batch.TimeZoneTest - Pacific/Niue
13:04:52.208 INFO  com.dbility.batch.TimeZoneTest - Pacific/Pago_Pago
13:04:52.208 INFO  com.dbility.batch.TimeZoneTest - Pacific/Samoa
13:04:52.208 INFO  com.dbility.batch.TimeZoneTest - US/Samoa
13:04:52.209 INFO  com.dbility.batch.TimeZoneTest - America/Adak
13:04:52.209 INFO  com.dbility.batch.TimeZoneTest - America/Atka
13:04:52.209 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT+10
13:04:52.210 INFO  com.dbility.batch.TimeZoneTest - HST
13:04:52.210 INFO  com.dbility.batch.TimeZoneTest - Pacific/Honolulu
13:04:52.210 INFO  com.dbility.batch.TimeZoneTest - Pacific/Johnston
13:04:52.211 INFO  com.dbility.batch.TimeZoneTest - Pacific/Rarotonga
13:04:52.211 INFO  com.dbility.batch.TimeZoneTest - Pacific/Tahiti
13:04:52.212 INFO  com.dbility.batch.TimeZoneTest - SystemV/HST10
13:04:52.212 INFO  com.dbility.batch.TimeZoneTest - US/Aleutian
13:04:52.212 INFO  com.dbility.batch.TimeZoneTest - US/Hawaii
13:04:52.212 INFO  com.dbility.batch.TimeZoneTest - Pacific/Marquesas
13:04:52.213 INFO  com.dbility.batch.TimeZoneTest - AST
13:04:52.213 INFO  com.dbility.batch.TimeZoneTest - America/Anchorage
13:04:52.213 INFO  com.dbility.batch.TimeZoneTest - America/Juneau
13:04:52.214 INFO  com.dbility.batch.TimeZoneTest - America/Nome
13:04:52.214 INFO  com.dbility.batch.TimeZoneTest - America/Sitka
13:04:52.215 INFO  com.dbility.batch.TimeZoneTest - America/Yakutat
13:04:52.215 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT+9
13:04:52.216 INFO  com.dbility.batch.TimeZoneTest - Pacific/Gambier
13:04:52.216 INFO  com.dbility.batch.TimeZoneTest - SystemV/YST9
13:04:52.217 INFO  com.dbility.batch.TimeZoneTest - SystemV/YST9YDT
13:04:52.217 INFO  com.dbility.batch.TimeZoneTest - US/Alaska
13:04:52.217 INFO  com.dbility.batch.TimeZoneTest - America/Dawson
13:04:52.218 INFO  com.dbility.batch.TimeZoneTest - America/Ensenada
13:04:52.218 INFO  com.dbility.batch.TimeZoneTest - America/Los_Angeles
13:04:52.219 INFO  com.dbility.batch.TimeZoneTest - America/Metlakatla
13:04:52.219 INFO  com.dbility.batch.TimeZoneTest - America/Santa_Isabel
13:04:52.219 INFO  com.dbility.batch.TimeZoneTest - America/Tijuana
13:04:52.220 INFO  com.dbility.batch.TimeZoneTest - America/Vancouver
13:04:52.220 INFO  com.dbility.batch.TimeZoneTest - America/Whitehorse
13:04:52.220 INFO  com.dbility.batch.TimeZoneTest - Canada/Pacific
13:04:52.220 INFO  com.dbility.batch.TimeZoneTest - Canada/Yukon
13:04:52.221 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT+8
13:04:52.221 INFO  com.dbility.batch.TimeZoneTest - Mexico/BajaNorte
13:04:52.221 INFO  com.dbility.batch.TimeZoneTest - PST
13:04:52.221 INFO  com.dbility.batch.TimeZoneTest - PST8PDT
13:04:52.222 INFO  com.dbility.batch.TimeZoneTest - Pacific/Pitcairn
13:04:52.222 INFO  com.dbility.batch.TimeZoneTest - SystemV/PST8
13:04:52.223 INFO  com.dbility.batch.TimeZoneTest - SystemV/PST8PDT
13:04:52.223 INFO  com.dbility.batch.TimeZoneTest - US/Pacific
13:04:52.223 INFO  com.dbility.batch.TimeZoneTest - US/Pacific-New
13:04:52.224 INFO  com.dbility.batch.TimeZoneTest - America/Boise
13:04:52.224 INFO  com.dbility.batch.TimeZoneTest - America/Cambridge_Bay
13:04:52.225 INFO  com.dbility.batch.TimeZoneTest - America/Chihuahua
13:04:52.225 INFO  com.dbility.batch.TimeZoneTest - America/Creston
13:04:52.226 INFO  com.dbility.batch.TimeZoneTest - America/Dawson_Creek
13:04:52.226 INFO  com.dbility.batch.TimeZoneTest - America/Denver
13:04:52.227 INFO  com.dbility.batch.TimeZoneTest - America/Edmonton
13:04:52.227 INFO  com.dbility.batch.TimeZoneTest - America/Hermosillo
13:04:52.228 INFO  com.dbility.batch.TimeZoneTest - America/Inuvik
13:04:52.228 INFO  com.dbility.batch.TimeZoneTest - America/Mazatlan
13:04:52.229 INFO  com.dbility.batch.TimeZoneTest - America/Ojinaga
13:04:52.229 INFO  com.dbility.batch.TimeZoneTest - America/Phoenix
13:04:52.229 INFO  com.dbility.batch.TimeZoneTest - America/Shiprock
13:04:52.230 INFO  com.dbility.batch.TimeZoneTest - America/Yellowknife
13:04:52.230 INFO  com.dbility.batch.TimeZoneTest - Canada/Mountain
13:04:52.230 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT+7
13:04:52.231 INFO  com.dbility.batch.TimeZoneTest - MST
13:04:52.231 INFO  com.dbility.batch.TimeZoneTest - MST7MDT
13:04:52.231 INFO  com.dbility.batch.TimeZoneTest - Mexico/BajaSur
13:04:52.231 INFO  com.dbility.batch.TimeZoneTest - Navajo
13:04:52.231 INFO  com.dbility.batch.TimeZoneTest - PNT
13:04:52.232 INFO  com.dbility.batch.TimeZoneTest - SystemV/MST7
13:04:52.232 INFO  com.dbility.batch.TimeZoneTest - SystemV/MST7MDT
13:04:52.232 INFO  com.dbility.batch.TimeZoneTest - US/Arizona
13:04:52.232 INFO  com.dbility.batch.TimeZoneTest - US/Mountain
13:04:52.233 INFO  com.dbility.batch.TimeZoneTest - America/Bahia_Banderas
13:04:52.233 INFO  com.dbility.batch.TimeZoneTest - America/Belize
13:04:52.234 INFO  com.dbility.batch.TimeZoneTest - America/Chicago
13:04:52.235 INFO  com.dbility.batch.TimeZoneTest - America/Costa_Rica
13:04:52.236 INFO  com.dbility.batch.TimeZoneTest - America/El_Salvador
13:04:52.236 INFO  com.dbility.batch.TimeZoneTest - America/Guatemala
13:04:52.237 INFO  com.dbility.batch.TimeZoneTest - America/Indiana/Knox
13:04:52.237 INFO  com.dbility.batch.TimeZoneTest - America/Indiana/Tell_City
13:04:52.237 INFO  com.dbility.batch.TimeZoneTest - America/Knox_IN
13:04:52.238 INFO  com.dbility.batch.TimeZoneTest - America/Managua
13:04:52.238 INFO  com.dbility.batch.TimeZoneTest - America/Matamoros
13:04:52.239 INFO  com.dbility.batch.TimeZoneTest - America/Menominee
13:04:52.240 INFO  com.dbility.batch.TimeZoneTest - America/Merida
13:04:52.240 INFO  com.dbility.batch.TimeZoneTest - America/Mexico_City
13:04:52.241 INFO  com.dbility.batch.TimeZoneTest - America/Monterrey
13:04:52.241 INFO  com.dbility.batch.TimeZoneTest - America/North_Dakota/Beulah
13:04:52.242 INFO  com.dbility.batch.TimeZoneTest - America/North_Dakota/Center
13:04:52.243 INFO  com.dbility.batch.TimeZoneTest - America/North_Dakota/New_Salem
13:04:52.244 INFO  com.dbility.batch.TimeZoneTest - America/Rainy_River
13:04:52.244 INFO  com.dbility.batch.TimeZoneTest - America/Rankin_Inlet
13:04:52.245 INFO  com.dbility.batch.TimeZoneTest - America/Regina
13:04:52.246 INFO  com.dbility.batch.TimeZoneTest - America/Resolute
13:04:52.246 INFO  com.dbility.batch.TimeZoneTest - America/Swift_Current
13:04:52.247 INFO  com.dbility.batch.TimeZoneTest - America/Tegucigalpa
13:04:52.248 INFO  com.dbility.batch.TimeZoneTest - America/Winnipeg
13:04:52.248 INFO  com.dbility.batch.TimeZoneTest - CST
13:04:52.248 INFO  com.dbility.batch.TimeZoneTest - CST6CDT
13:04:52.248 INFO  com.dbility.batch.TimeZoneTest - Canada/Central
13:04:52.248 INFO  com.dbility.batch.TimeZoneTest - Canada/East-Saskatchewan
13:04:52.248 INFO  com.dbility.batch.TimeZoneTest - Canada/Saskatchewan
13:04:52.249 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT+6
13:04:52.249 INFO  com.dbility.batch.TimeZoneTest - Mexico/General
13:04:52.250 INFO  com.dbility.batch.TimeZoneTest - Pacific/Galapagos
13:04:52.251 INFO  com.dbility.batch.TimeZoneTest - SystemV/CST6
13:04:52.252 INFO  com.dbility.batch.TimeZoneTest - SystemV/CST6CDT
13:04:52.252 INFO  com.dbility.batch.TimeZoneTest - US/Central
13:04:52.252 INFO  com.dbility.batch.TimeZoneTest - US/Indiana-Starke
13:04:52.253 INFO  com.dbility.batch.TimeZoneTest - America/Atikokan
13:04:52.254 INFO  com.dbility.batch.TimeZoneTest - America/Bogota
13:04:52.255 INFO  com.dbility.batch.TimeZoneTest - America/Cancun
13:04:52.255 INFO  com.dbility.batch.TimeZoneTest - America/Cayman
13:04:52.256 INFO  com.dbility.batch.TimeZoneTest - America/Coral_Harbour
13:04:52.256 INFO  com.dbility.batch.TimeZoneTest - America/Detroit
13:04:52.257 INFO  com.dbility.batch.TimeZoneTest - America/Eirunepe
13:04:52.257 INFO  com.dbility.batch.TimeZoneTest - America/Fort_Wayne
13:04:52.258 INFO  com.dbility.batch.TimeZoneTest - America/Guayaquil
13:04:52.258 INFO  com.dbility.batch.TimeZoneTest - America/Havana
13:04:52.258 INFO  com.dbility.batch.TimeZoneTest - America/Indiana/Indianapolis
13:04:52.259 INFO  com.dbility.batch.TimeZoneTest - America/Indiana/Marengo
13:04:52.260 INFO  com.dbility.batch.TimeZoneTest - America/Indiana/Petersburg
13:04:52.260 INFO  com.dbility.batch.TimeZoneTest - America/Indiana/Vevay
13:04:52.260 INFO  com.dbility.batch.TimeZoneTest - America/Indiana/Vincennes
13:04:52.261 INFO  com.dbility.batch.TimeZoneTest - America/Indiana/Winamac
13:04:52.262 INFO  com.dbility.batch.TimeZoneTest - America/Indianapolis
13:04:52.262 INFO  com.dbility.batch.TimeZoneTest - America/Iqaluit
13:04:52.263 INFO  com.dbility.batch.TimeZoneTest - America/Jamaica
13:04:52.264 INFO  com.dbility.batch.TimeZoneTest - America/Kentucky/Louisville
13:04:52.264 INFO  com.dbility.batch.TimeZoneTest - America/Kentucky/Monticello
13:04:52.265 INFO  com.dbility.batch.TimeZoneTest - America/Lima
13:04:52.265 INFO  com.dbility.batch.TimeZoneTest - America/Louisville
13:04:52.266 INFO  com.dbility.batch.TimeZoneTest - America/Montreal
13:04:52.267 INFO  com.dbility.batch.TimeZoneTest - America/Nassau
13:04:52.267 INFO  com.dbility.batch.TimeZoneTest - America/New_York
13:04:52.267 INFO  com.dbility.batch.TimeZoneTest - America/Nipigon
13:04:52.268 INFO  com.dbility.batch.TimeZoneTest - America/Panama
13:04:52.268 INFO  com.dbility.batch.TimeZoneTest - America/Pangnirtung
13:04:52.269 INFO  com.dbility.batch.TimeZoneTest - America/Port-au-Prince
13:04:52.269 INFO  com.dbility.batch.TimeZoneTest - America/Porto_Acre
13:04:52.269 INFO  com.dbility.batch.TimeZoneTest - America/Rio_Branco
13:04:52.270 INFO  com.dbility.batch.TimeZoneTest - America/Thunder_Bay
13:04:52.271 INFO  com.dbility.batch.TimeZoneTest - America/Toronto
13:04:52.271 INFO  com.dbility.batch.TimeZoneTest - Brazil/Acre
13:04:52.271 INFO  com.dbility.batch.TimeZoneTest - Canada/Eastern
13:04:52.272 INFO  com.dbility.batch.TimeZoneTest - Cuba
13:04:52.272 INFO  com.dbility.batch.TimeZoneTest - EST
13:04:52.272 INFO  com.dbility.batch.TimeZoneTest - EST5EDT
13:04:52.273 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT+5
13:04:52.273 INFO  com.dbility.batch.TimeZoneTest - IET
13:04:52.273 INFO  com.dbility.batch.TimeZoneTest - Jamaica
13:04:52.274 INFO  com.dbility.batch.TimeZoneTest - SystemV/EST5
13:04:52.275 INFO  com.dbility.batch.TimeZoneTest - SystemV/EST5EDT
13:04:52.275 INFO  com.dbility.batch.TimeZoneTest - US/East-Indiana
13:04:52.275 INFO  com.dbility.batch.TimeZoneTest - US/Eastern
13:04:52.275 INFO  com.dbility.batch.TimeZoneTest - US/Michigan
13:04:52.276 INFO  com.dbility.batch.TimeZoneTest - America/Caracas
13:04:52.277 INFO  com.dbility.batch.TimeZoneTest - America/Anguilla
13:04:52.278 INFO  com.dbility.batch.TimeZoneTest - America/Antigua
13:04:52.278 INFO  com.dbility.batch.TimeZoneTest - America/Aruba
13:04:52.279 INFO  com.dbility.batch.TimeZoneTest - America/Asuncion
13:04:52.280 INFO  com.dbility.batch.TimeZoneTest - America/Barbados
13:04:52.280 INFO  com.dbility.batch.TimeZoneTest - America/Blanc-Sablon
13:04:52.281 INFO  com.dbility.batch.TimeZoneTest - America/Boa_Vista
13:04:52.282 INFO  com.dbility.batch.TimeZoneTest - America/Campo_Grande
13:04:52.283 INFO  com.dbility.batch.TimeZoneTest - America/Cuiaba
13:04:52.283 INFO  com.dbility.batch.TimeZoneTest - America/Curacao
13:04:52.283 INFO  com.dbility.batch.TimeZoneTest - America/Dominica
13:04:52.284 INFO  com.dbility.batch.TimeZoneTest - America/Glace_Bay
13:04:52.284 INFO  com.dbility.batch.TimeZoneTest - America/Goose_Bay
13:04:52.285 INFO  com.dbility.batch.TimeZoneTest - America/Grenada
13:04:52.285 INFO  com.dbility.batch.TimeZoneTest - America/Guadeloupe
13:04:52.286 INFO  com.dbility.batch.TimeZoneTest - America/Guyana
13:04:52.286 INFO  com.dbility.batch.TimeZoneTest - America/Halifax
13:04:52.286 INFO  com.dbility.batch.TimeZoneTest - America/Kralendijk
13:04:52.287 INFO  com.dbility.batch.TimeZoneTest - America/La_Paz
13:04:52.287 INFO  com.dbility.batch.TimeZoneTest - America/Lower_Princes
13:04:52.288 INFO  com.dbility.batch.TimeZoneTest - America/Manaus
13:04:52.289 INFO  com.dbility.batch.TimeZoneTest - America/Marigot
13:04:52.289 INFO  com.dbility.batch.TimeZoneTest - America/Martinique
13:04:52.290 INFO  com.dbility.batch.TimeZoneTest - America/Moncton
13:04:52.290 INFO  com.dbility.batch.TimeZoneTest - America/Montserrat
13:04:52.291 INFO  com.dbility.batch.TimeZoneTest - America/Port_of_Spain
13:04:52.291 INFO  com.dbility.batch.TimeZoneTest - America/Porto_Velho
13:04:52.292 INFO  com.dbility.batch.TimeZoneTest - America/Puerto_Rico
13:04:52.293 INFO  com.dbility.batch.TimeZoneTest - America/Santo_Domingo
13:04:52.293 INFO  com.dbility.batch.TimeZoneTest - America/St_Barthelemy
13:04:52.293 INFO  com.dbility.batch.TimeZoneTest - America/St_Kitts
13:04:52.293 INFO  com.dbility.batch.TimeZoneTest - America/St_Lucia
13:04:52.293 INFO  com.dbility.batch.TimeZoneTest - America/St_Thomas
13:04:52.293 INFO  com.dbility.batch.TimeZoneTest - America/St_Vincent
13:04:52.294 INFO  com.dbility.batch.TimeZoneTest - America/Thule
13:04:52.295 INFO  com.dbility.batch.TimeZoneTest - America/Tortola
13:04:52.295 INFO  com.dbility.batch.TimeZoneTest - America/Virgin
13:04:52.296 INFO  com.dbility.batch.TimeZoneTest - Atlantic/Bermuda
13:04:52.296 INFO  com.dbility.batch.TimeZoneTest - Brazil/West
13:04:52.296 INFO  com.dbility.batch.TimeZoneTest - Canada/Atlantic
13:04:52.297 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT+4
13:04:52.297 INFO  com.dbility.batch.TimeZoneTest - PRT
13:04:52.297 INFO  com.dbility.batch.TimeZoneTest - SystemV/AST4
13:04:52.298 INFO  com.dbility.batch.TimeZoneTest - SystemV/AST4ADT
13:04:52.300 INFO  com.dbility.batch.TimeZoneTest - America/St_Johns
13:04:52.300 INFO  com.dbility.batch.TimeZoneTest - CNT
13:04:52.300 INFO  com.dbility.batch.TimeZoneTest - Canada/Newfoundland
13:04:52.300 INFO  com.dbility.batch.TimeZoneTest - AGT
13:04:52.301 INFO  com.dbility.batch.TimeZoneTest - America/Araguaina
13:04:52.301 INFO  com.dbility.batch.TimeZoneTest - America/Argentina/Buenos_Aires
13:04:52.302 INFO  com.dbility.batch.TimeZoneTest - America/Argentina/Catamarca
13:04:52.302 INFO  com.dbility.batch.TimeZoneTest - America/Argentina/ComodRivadavia
13:04:52.302 INFO  com.dbility.batch.TimeZoneTest - America/Argentina/Cordoba
13:04:52.303 INFO  com.dbility.batch.TimeZoneTest - America/Argentina/Jujuy
13:04:52.303 INFO  com.dbility.batch.TimeZoneTest - America/Argentina/La_Rioja
13:04:52.304 INFO  com.dbility.batch.TimeZoneTest - America/Argentina/Mendoza
13:04:52.304 INFO  com.dbility.batch.TimeZoneTest - America/Argentina/Rio_Gallegos
13:04:52.305 INFO  com.dbility.batch.TimeZoneTest - America/Argentina/Salta
13:04:52.305 INFO  com.dbility.batch.TimeZoneTest - America/Argentina/San_Juan
13:04:52.306 INFO  com.dbility.batch.TimeZoneTest - America/Argentina/San_Luis
13:04:52.306 INFO  com.dbility.batch.TimeZoneTest - America/Argentina/Tucuman
13:04:52.307 INFO  com.dbility.batch.TimeZoneTest - America/Argentina/Ushuaia
13:04:52.307 INFO  com.dbility.batch.TimeZoneTest - America/Bahia
13:04:52.307 INFO  com.dbility.batch.TimeZoneTest - America/Belem
13:04:52.308 INFO  com.dbility.batch.TimeZoneTest - America/Buenos_Aires
13:04:52.308 INFO  com.dbility.batch.TimeZoneTest - America/Catamarca
13:04:52.308 INFO  com.dbility.batch.TimeZoneTest - America/Cayenne
13:04:52.308 INFO  com.dbility.batch.TimeZoneTest - America/Cordoba
13:04:52.309 INFO  com.dbility.batch.TimeZoneTest - America/Fortaleza
13:04:52.309 INFO  com.dbility.batch.TimeZoneTest - America/Godthab
13:04:52.309 INFO  com.dbility.batch.TimeZoneTest - America/Jujuy
13:04:52.309 INFO  com.dbility.batch.TimeZoneTest - America/Maceio
13:04:52.310 INFO  com.dbility.batch.TimeZoneTest - America/Mendoza
13:04:52.310 INFO  com.dbility.batch.TimeZoneTest - America/Miquelon
13:04:52.311 INFO  com.dbility.batch.TimeZoneTest - America/Montevideo
13:04:52.311 INFO  com.dbility.batch.TimeZoneTest - America/Paramaribo
13:04:52.312 INFO  com.dbility.batch.TimeZoneTest - America/Recife
13:04:52.312 INFO  com.dbility.batch.TimeZoneTest - America/Rosario
13:04:52.312 INFO  com.dbility.batch.TimeZoneTest - America/Santarem
13:04:52.313 INFO  com.dbility.batch.TimeZoneTest - America/Sao_Paulo
13:04:52.314 INFO  com.dbility.batch.TimeZoneTest - Antarctica/Rothera
13:04:52.314 INFO  com.dbility.batch.TimeZoneTest - Atlantic/Stanley
13:04:52.314 INFO  com.dbility.batch.TimeZoneTest - BET
13:04:52.314 INFO  com.dbility.batch.TimeZoneTest - Brazil/East
13:04:52.315 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT+3
13:04:52.316 INFO  com.dbility.batch.TimeZoneTest - America/Noronha
13:04:52.316 INFO  com.dbility.batch.TimeZoneTest - Atlantic/South_Georgia
13:04:52.316 INFO  com.dbility.batch.TimeZoneTest - Brazil/DeNoronha
13:04:52.317 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT+2
13:04:52.317 INFO  com.dbility.batch.TimeZoneTest - America/Scoresbysund
13:04:52.318 INFO  com.dbility.batch.TimeZoneTest - Atlantic/Azores
13:04:52.319 INFO  com.dbility.batch.TimeZoneTest - Atlantic/Cape_Verde
13:04:52.319 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT+1
13:04:52.320 INFO  com.dbility.batch.TimeZoneTest - Africa/Abidjan
13:04:52.320 INFO  com.dbility.batch.TimeZoneTest - Africa/Accra
13:04:52.320 INFO  com.dbility.batch.TimeZoneTest - Africa/Bamako
13:04:52.320 INFO  com.dbility.batch.TimeZoneTest - Africa/Banjul
13:04:52.321 INFO  com.dbility.batch.TimeZoneTest - Africa/Bissau
13:04:52.321 INFO  com.dbility.batch.TimeZoneTest - Africa/Casablanca
13:04:52.321 INFO  com.dbility.batch.TimeZoneTest - Africa/Conakry
13:04:52.321 INFO  com.dbility.batch.TimeZoneTest - Africa/Dakar
13:04:52.322 INFO  com.dbility.batch.TimeZoneTest - Africa/El_Aaiun
13:04:52.322 INFO  com.dbility.batch.TimeZoneTest - Africa/Freetown
13:04:52.322 INFO  com.dbility.batch.TimeZoneTest - Africa/Lome
13:04:52.323 INFO  com.dbility.batch.TimeZoneTest - Africa/Monrovia
13:04:52.323 INFO  com.dbility.batch.TimeZoneTest - Africa/Nouakchott
13:04:52.323 INFO  com.dbility.batch.TimeZoneTest - Africa/Ouagadougou
13:04:52.323 INFO  com.dbility.batch.TimeZoneTest - Africa/Sao_Tome
13:04:52.323 INFO  com.dbility.batch.TimeZoneTest - Africa/Timbuktu
13:04:52.323 INFO  com.dbility.batch.TimeZoneTest - America/Danmarkshavn
13:04:52.324 INFO  com.dbility.batch.TimeZoneTest - Antarctica/Troll
13:04:52.324 INFO  com.dbility.batch.TimeZoneTest - Atlantic/Canary
13:04:52.325 INFO  com.dbility.batch.TimeZoneTest - Atlantic/Faeroe
13:04:52.325 INFO  com.dbility.batch.TimeZoneTest - Atlantic/Faroe
13:04:52.325 INFO  com.dbility.batch.TimeZoneTest - Atlantic/Madeira
13:04:52.326 INFO  com.dbility.batch.TimeZoneTest - Atlantic/Reykjavik
13:04:52.326 INFO  com.dbility.batch.TimeZoneTest - Atlantic/St_Helena
13:04:52.326 INFO  com.dbility.batch.TimeZoneTest - Eire
13:04:52.327 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT
13:04:52.327 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT+0
13:04:52.327 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT-0
13:04:52.327 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT0
13:04:52.327 INFO  com.dbility.batch.TimeZoneTest - Etc/Greenwich
13:04:52.327 INFO  com.dbility.batch.TimeZoneTest - Etc/UCT
13:04:52.328 INFO  com.dbility.batch.TimeZoneTest - Etc/UTC
13:04:52.328 INFO  com.dbility.batch.TimeZoneTest - Etc/Universal
13:04:52.328 INFO  com.dbility.batch.TimeZoneTest - Etc/Zulu
13:04:52.329 INFO  com.dbility.batch.TimeZoneTest - Europe/Belfast
13:04:52.329 INFO  com.dbility.batch.TimeZoneTest - Europe/Dublin
13:04:52.329 INFO  com.dbility.batch.TimeZoneTest - Europe/Guernsey
13:04:52.329 INFO  com.dbility.batch.TimeZoneTest - Europe/Isle_of_Man
13:04:52.329 INFO  com.dbility.batch.TimeZoneTest - Europe/Jersey
13:04:52.329 INFO  com.dbility.batch.TimeZoneTest - Europe/Lisbon
13:04:52.329 INFO  com.dbility.batch.TimeZoneTest - Europe/London
13:04:52.329 INFO  com.dbility.batch.TimeZoneTest - GB
13:04:52.330 INFO  com.dbility.batch.TimeZoneTest - GB-Eire
13:04:52.330 INFO  com.dbility.batch.TimeZoneTest - GMT
13:04:52.330 INFO  com.dbility.batch.TimeZoneTest - GMT0
13:04:52.330 INFO  com.dbility.batch.TimeZoneTest - Greenwich
13:04:52.330 INFO  com.dbility.batch.TimeZoneTest - Iceland
13:04:52.330 INFO  com.dbility.batch.TimeZoneTest - Portugal
13:04:52.330 INFO  com.dbility.batch.TimeZoneTest - UCT
13:04:52.330 INFO  com.dbility.batch.TimeZoneTest - UTC
13:04:52.330 INFO  com.dbility.batch.TimeZoneTest - Universal
13:04:52.330 INFO  com.dbility.batch.TimeZoneTest - WET
13:04:52.330 INFO  com.dbility.batch.TimeZoneTest - Zulu
13:04:52.331 INFO  com.dbility.batch.TimeZoneTest - Africa/Algiers
13:04:52.332 INFO  com.dbility.batch.TimeZoneTest - Africa/Bangui
13:04:52.332 INFO  com.dbility.batch.TimeZoneTest - Africa/Brazzaville
13:04:52.333 INFO  com.dbility.batch.TimeZoneTest - Africa/Ceuta
13:04:52.333 INFO  com.dbility.batch.TimeZoneTest - Africa/Douala
13:04:52.333 INFO  com.dbility.batch.TimeZoneTest - Africa/Kinshasa
13:04:52.333 INFO  com.dbility.batch.TimeZoneTest - Africa/Lagos
13:04:52.333 INFO  com.dbility.batch.TimeZoneTest - Africa/Libreville
13:04:52.333 INFO  com.dbility.batch.TimeZoneTest - Africa/Luanda
13:04:52.333 INFO  com.dbility.batch.TimeZoneTest - Africa/Malabo
13:04:52.334 INFO  com.dbility.batch.TimeZoneTest - Africa/Ndjamena
13:04:52.334 INFO  com.dbility.batch.TimeZoneTest - Africa/Niamey
13:04:52.334 INFO  com.dbility.batch.TimeZoneTest - Africa/Porto-Novo
13:04:52.334 INFO  com.dbility.batch.TimeZoneTest - Africa/Tunis
13:04:52.335 INFO  com.dbility.batch.TimeZoneTest - Africa/Windhoek
13:04:52.335 INFO  com.dbility.batch.TimeZoneTest - Arctic/Longyearbyen
13:04:52.336 INFO  com.dbility.batch.TimeZoneTest - Atlantic/Jan_Mayen
13:04:52.336 INFO  com.dbility.batch.TimeZoneTest - CET
13:04:52.336 INFO  com.dbility.batch.TimeZoneTest - ECT
13:04:52.337 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT-1
13:04:52.337 INFO  com.dbility.batch.TimeZoneTest - Europe/Amsterdam
13:04:52.338 INFO  com.dbility.batch.TimeZoneTest - Europe/Andorra
13:04:52.338 INFO  com.dbility.batch.TimeZoneTest - Europe/Belgrade
13:04:52.339 INFO  com.dbility.batch.TimeZoneTest - Europe/Berlin
13:04:52.339 INFO  com.dbility.batch.TimeZoneTest - Europe/Bratislava
13:04:52.340 INFO  com.dbility.batch.TimeZoneTest - Europe/Brussels
13:04:52.340 INFO  com.dbility.batch.TimeZoneTest - Europe/Budapest
13:04:52.341 INFO  com.dbility.batch.TimeZoneTest - Europe/Busingen
13:04:52.341 INFO  com.dbility.batch.TimeZoneTest - Europe/Copenhagen
13:04:52.342 INFO  com.dbility.batch.TimeZoneTest - Europe/Gibraltar
13:04:52.342 INFO  com.dbility.batch.TimeZoneTest - Europe/Ljubljana
13:04:52.342 INFO  com.dbility.batch.TimeZoneTest - Europe/Luxembourg
13:04:52.343 INFO  com.dbility.batch.TimeZoneTest - Europe/Madrid
13:04:52.343 INFO  com.dbility.batch.TimeZoneTest - Europe/Malta
13:04:52.344 INFO  com.dbility.batch.TimeZoneTest - Europe/Monaco
13:04:52.344 INFO  com.dbility.batch.TimeZoneTest - Europe/Oslo
13:04:52.344 INFO  com.dbility.batch.TimeZoneTest - Europe/Paris
13:04:52.344 INFO  com.dbility.batch.TimeZoneTest - Europe/Podgorica
13:04:52.344 INFO  com.dbility.batch.TimeZoneTest - Europe/Prague
13:04:52.344 INFO  com.dbility.batch.TimeZoneTest - Europe/Rome
13:04:52.345 INFO  com.dbility.batch.TimeZoneTest - Europe/San_Marino
13:04:52.345 INFO  com.dbility.batch.TimeZoneTest - Europe/Sarajevo
13:04:52.345 INFO  com.dbility.batch.TimeZoneTest - Europe/Skopje
13:04:52.345 INFO  com.dbility.batch.TimeZoneTest - Europe/Stockholm
13:04:52.346 INFO  com.dbility.batch.TimeZoneTest - Europe/Tirane
13:04:52.346 INFO  com.dbility.batch.TimeZoneTest - Europe/Vaduz
13:04:52.346 INFO  com.dbility.batch.TimeZoneTest - Europe/Vatican
13:04:52.347 INFO  com.dbility.batch.TimeZoneTest - Europe/Vienna
13:04:52.347 INFO  com.dbility.batch.TimeZoneTest - Europe/Warsaw
13:04:52.347 INFO  com.dbility.batch.TimeZoneTest - Europe/Zagreb
13:04:52.347 INFO  com.dbility.batch.TimeZoneTest - Europe/Zurich
13:04:52.348 INFO  com.dbility.batch.TimeZoneTest - MET
13:04:52.348 INFO  com.dbility.batch.TimeZoneTest - Poland
13:04:52.349 INFO  com.dbility.batch.TimeZoneTest - ART
13:04:52.349 INFO  com.dbility.batch.TimeZoneTest - Africa/Blantyre
13:04:52.349 INFO  com.dbility.batch.TimeZoneTest - Africa/Bujumbura
13:04:52.349 INFO  com.dbility.batch.TimeZoneTest - Africa/Cairo
13:04:52.349 INFO  com.dbility.batch.TimeZoneTest - Africa/Gaborone
13:04:52.349 INFO  com.dbility.batch.TimeZoneTest - Africa/Harare
13:04:52.350 INFO  com.dbility.batch.TimeZoneTest - Africa/Johannesburg
13:04:52.350 INFO  com.dbility.batch.TimeZoneTest - Africa/Kigali
13:04:52.350 INFO  com.dbility.batch.TimeZoneTest - Africa/Lubumbashi
13:04:52.350 INFO  com.dbility.batch.TimeZoneTest - Africa/Lusaka
13:04:52.350 INFO  com.dbility.batch.TimeZoneTest - Africa/Maputo
13:04:52.350 INFO  com.dbility.batch.TimeZoneTest - Africa/Maseru
13:04:52.350 INFO  com.dbility.batch.TimeZoneTest - Africa/Mbabane
13:04:52.351 INFO  com.dbility.batch.TimeZoneTest - Africa/Tripoli
13:04:52.352 INFO  com.dbility.batch.TimeZoneTest - Asia/Amman
13:04:52.353 INFO  com.dbility.batch.TimeZoneTest - Asia/Beirut
13:04:52.354 INFO  com.dbility.batch.TimeZoneTest - Asia/Damascus
13:04:52.354 INFO  com.dbility.batch.TimeZoneTest - Asia/Gaza
13:04:52.355 INFO  com.dbility.batch.TimeZoneTest - Asia/Hebron
13:04:52.356 INFO  com.dbility.batch.TimeZoneTest - Asia/Istanbul
13:04:52.356 INFO  com.dbility.batch.TimeZoneTest - Asia/Jerusalem
13:04:52.357 INFO  com.dbility.batch.TimeZoneTest - Asia/Nicosia
13:04:52.357 INFO  com.dbility.batch.TimeZoneTest - Asia/Tel_Aviv
13:04:52.357 INFO  com.dbility.batch.TimeZoneTest - CAT
13:04:52.358 INFO  com.dbility.batch.TimeZoneTest - EET
13:04:52.358 INFO  com.dbility.batch.TimeZoneTest - Egypt
13:04:52.358 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT-2
13:04:52.359 INFO  com.dbility.batch.TimeZoneTest - Europe/Athens
13:04:52.359 INFO  com.dbility.batch.TimeZoneTest - Europe/Bucharest
13:04:52.360 INFO  com.dbility.batch.TimeZoneTest - Europe/Chisinau
13:04:52.361 INFO  com.dbility.batch.TimeZoneTest - Europe/Helsinki
13:04:52.361 INFO  com.dbility.batch.TimeZoneTest - Europe/Istanbul
13:04:52.361 INFO  com.dbility.batch.TimeZoneTest - Europe/Kaliningrad
13:04:52.362 INFO  com.dbility.batch.TimeZoneTest - Europe/Kiev
13:04:52.362 INFO  com.dbility.batch.TimeZoneTest - Europe/Mariehamn
13:04:52.362 INFO  com.dbility.batch.TimeZoneTest - Europe/Nicosia
13:04:52.363 INFO  com.dbility.batch.TimeZoneTest - Europe/Riga
13:04:52.363 INFO  com.dbility.batch.TimeZoneTest - Europe/Sofia
13:04:52.364 INFO  com.dbility.batch.TimeZoneTest - Europe/Tallinn
13:04:52.364 INFO  com.dbility.batch.TimeZoneTest - Europe/Tiraspol
13:04:52.365 INFO  com.dbility.batch.TimeZoneTest - Europe/Uzhgorod
13:04:52.366 INFO  com.dbility.batch.TimeZoneTest - Europe/Vilnius
13:04:52.366 INFO  com.dbility.batch.TimeZoneTest - Europe/Zaporozhye
13:04:52.366 INFO  com.dbility.batch.TimeZoneTest - Israel
13:04:52.366 INFO  com.dbility.batch.TimeZoneTest - Libya
13:04:52.367 INFO  com.dbility.batch.TimeZoneTest - Turkey
13:04:52.367 INFO  com.dbility.batch.TimeZoneTest - Africa/Addis_Ababa
13:04:52.367 INFO  com.dbility.batch.TimeZoneTest - Africa/Asmara
13:04:52.367 INFO  com.dbility.batch.TimeZoneTest - Africa/Asmera
13:04:52.367 INFO  com.dbility.batch.TimeZoneTest - Africa/Dar_es_Salaam
13:04:52.367 INFO  com.dbility.batch.TimeZoneTest - Africa/Djibouti
13:04:52.368 INFO  com.dbility.batch.TimeZoneTest - Africa/Juba
13:04:52.368 INFO  com.dbility.batch.TimeZoneTest - Africa/Kampala
13:04:52.368 INFO  com.dbility.batch.TimeZoneTest - Africa/Khartoum
13:04:52.368 INFO  com.dbility.batch.TimeZoneTest - Africa/Mogadishu
13:04:52.368 INFO  com.dbility.batch.TimeZoneTest - Africa/Nairobi
13:04:52.369 INFO  com.dbility.batch.TimeZoneTest - Antarctica/Syowa
13:04:52.370 INFO  com.dbility.batch.TimeZoneTest - Asia/Aden
13:04:52.370 INFO  com.dbility.batch.TimeZoneTest - Asia/Baghdad
13:04:52.371 INFO  com.dbility.batch.TimeZoneTest - Asia/Bahrain
13:04:52.371 INFO  com.dbility.batch.TimeZoneTest - Asia/Kuwait
13:04:52.371 INFO  com.dbility.batch.TimeZoneTest - Asia/Qatar
13:04:52.371 INFO  com.dbility.batch.TimeZoneTest - Asia/Riyadh
13:04:52.371 INFO  com.dbility.batch.TimeZoneTest - EAT
13:04:52.372 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT-3
13:04:52.372 INFO  com.dbility.batch.TimeZoneTest - Europe/Minsk
13:04:52.372 INFO  com.dbility.batch.TimeZoneTest - Europe/Moscow
13:04:52.373 INFO  com.dbility.batch.TimeZoneTest - Europe/Simferopol
13:04:52.373 INFO  com.dbility.batch.TimeZoneTest - Europe/Volgograd
13:04:52.374 INFO  com.dbility.batch.TimeZoneTest - Indian/Antananarivo
13:04:52.374 INFO  com.dbility.batch.TimeZoneTest - Indian/Comoro
13:04:52.374 INFO  com.dbility.batch.TimeZoneTest - Indian/Mayotte
13:04:52.374 INFO  com.dbility.batch.TimeZoneTest - W-SU
13:04:52.374 INFO  com.dbility.batch.TimeZoneTest - Asia/Riyadh87
13:04:52.375 INFO  com.dbility.batch.TimeZoneTest - Asia/Riyadh88
13:04:52.375 INFO  com.dbility.batch.TimeZoneTest - Asia/Riyadh89
13:04:52.375 INFO  com.dbility.batch.TimeZoneTest - Mideast/Riyadh87
13:04:52.375 INFO  com.dbility.batch.TimeZoneTest - Mideast/Riyadh88
13:04:52.375 INFO  com.dbility.batch.TimeZoneTest - Mideast/Riyadh89
13:04:52.376 INFO  com.dbility.batch.TimeZoneTest - Asia/Tehran
13:04:52.376 INFO  com.dbility.batch.TimeZoneTest - Iran
13:04:52.377 INFO  com.dbility.batch.TimeZoneTest - Asia/Baku
13:04:52.377 INFO  com.dbility.batch.TimeZoneTest - Asia/Dubai
13:04:52.377 INFO  com.dbility.batch.TimeZoneTest - Asia/Muscat
13:04:52.378 INFO  com.dbility.batch.TimeZoneTest - Asia/Tbilisi
13:04:52.378 INFO  com.dbility.batch.TimeZoneTest - Asia/Yerevan
13:04:52.379 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT-4
13:04:52.379 INFO  com.dbility.batch.TimeZoneTest - Europe/Samara
13:04:52.380 INFO  com.dbility.batch.TimeZoneTest - Indian/Mahe
13:04:52.380 INFO  com.dbility.batch.TimeZoneTest - Indian/Mauritius
13:04:52.381 INFO  com.dbility.batch.TimeZoneTest - Indian/Reunion
13:04:52.381 INFO  com.dbility.batch.TimeZoneTest - NET
13:04:52.381 INFO  com.dbility.batch.TimeZoneTest - Asia/Kabul
13:04:52.382 INFO  com.dbility.batch.TimeZoneTest - Antarctica/Mawson
13:04:52.383 INFO  com.dbility.batch.TimeZoneTest - Asia/Aqtau
13:04:52.383 INFO  com.dbility.batch.TimeZoneTest - Asia/Aqtobe
13:04:52.384 INFO  com.dbility.batch.TimeZoneTest - Asia/Ashgabat
13:04:52.384 INFO  com.dbility.batch.TimeZoneTest - Asia/Ashkhabad
13:04:52.384 INFO  com.dbility.batch.TimeZoneTest - Asia/Dushanbe
13:04:52.385 INFO  com.dbility.batch.TimeZoneTest - Asia/Karachi
13:04:52.385 INFO  com.dbility.batch.TimeZoneTest - Asia/Oral
13:04:52.386 INFO  com.dbility.batch.TimeZoneTest - Asia/Samarkand
13:04:52.386 INFO  com.dbility.batch.TimeZoneTest - Asia/Tashkent
13:04:52.387 INFO  com.dbility.batch.TimeZoneTest - Asia/Yekaterinburg
13:04:52.387 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT-5
13:04:52.388 INFO  com.dbility.batch.TimeZoneTest - Indian/Kerguelen
13:04:52.388 INFO  com.dbility.batch.TimeZoneTest - Indian/Maldives
13:04:52.388 INFO  com.dbility.batch.TimeZoneTest - PLT
13:04:52.389 INFO  com.dbility.batch.TimeZoneTest - Asia/Calcutta
13:04:52.389 INFO  com.dbility.batch.TimeZoneTest - Asia/Colombo
13:04:52.389 INFO  com.dbility.batch.TimeZoneTest - Asia/Kolkata
13:04:52.389 INFO  com.dbility.batch.TimeZoneTest - IST
13:04:52.390 INFO  com.dbility.batch.TimeZoneTest - Asia/Kathmandu
13:04:52.390 INFO  com.dbility.batch.TimeZoneTest - Asia/Katmandu
13:04:52.390 INFO  com.dbility.batch.TimeZoneTest - Antarctica/Vostok
13:04:52.391 INFO  com.dbility.batch.TimeZoneTest - Asia/Almaty
13:04:52.391 INFO  com.dbility.batch.TimeZoneTest - Asia/Bishkek
13:04:52.392 INFO  com.dbility.batch.TimeZoneTest - Asia/Dacca
13:04:52.392 INFO  com.dbility.batch.TimeZoneTest - Asia/Dhaka
13:04:52.392 INFO  com.dbility.batch.TimeZoneTest - Asia/Kashgar
13:04:52.393 INFO  com.dbility.batch.TimeZoneTest - Asia/Novosibirsk
13:04:52.393 INFO  com.dbility.batch.TimeZoneTest - Asia/Omsk
13:04:52.394 INFO  com.dbility.batch.TimeZoneTest - Asia/Qyzylorda
13:04:52.394 INFO  com.dbility.batch.TimeZoneTest - Asia/Thimbu
13:04:52.394 INFO  com.dbility.batch.TimeZoneTest - Asia/Thimphu
13:04:52.394 INFO  com.dbility.batch.TimeZoneTest - Asia/Urumqi
13:04:52.394 INFO  com.dbility.batch.TimeZoneTest - BST
13:04:52.395 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT-6
13:04:52.395 INFO  com.dbility.batch.TimeZoneTest - Indian/Chagos
13:04:52.396 INFO  com.dbility.batch.TimeZoneTest - Asia/Rangoon
13:04:52.396 INFO  com.dbility.batch.TimeZoneTest - Indian/Cocos
13:04:52.397 INFO  com.dbility.batch.TimeZoneTest - Antarctica/Davis
13:04:52.397 INFO  com.dbility.batch.TimeZoneTest - Asia/Bangkok
13:04:52.398 INFO  com.dbility.batch.TimeZoneTest - Asia/Ho_Chi_Minh
13:04:52.398 INFO  com.dbility.batch.TimeZoneTest - Asia/Hovd
13:04:52.399 INFO  com.dbility.batch.TimeZoneTest - Asia/Jakarta
13:04:52.399 INFO  com.dbility.batch.TimeZoneTest - Asia/Krasnoyarsk
13:04:52.400 INFO  com.dbility.batch.TimeZoneTest - Asia/Novokuznetsk
13:04:52.400 INFO  com.dbility.batch.TimeZoneTest - Asia/Phnom_Penh
13:04:52.400 INFO  com.dbility.batch.TimeZoneTest - Asia/Pontianak
13:04:52.400 INFO  com.dbility.batch.TimeZoneTest - Asia/Saigon
13:04:52.400 INFO  com.dbility.batch.TimeZoneTest - Asia/Vientiane
13:04:52.401 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT-7
13:04:52.401 INFO  com.dbility.batch.TimeZoneTest - Indian/Christmas
13:04:52.401 INFO  com.dbility.batch.TimeZoneTest - VST
13:04:52.401 INFO  com.dbility.batch.TimeZoneTest - Antarctica/Casey
13:04:52.402 INFO  com.dbility.batch.TimeZoneTest - Asia/Brunei
13:04:52.402 INFO  com.dbility.batch.TimeZoneTest - Asia/Chita
13:04:52.403 INFO  com.dbility.batch.TimeZoneTest - Asia/Choibalsan
13:04:52.404 INFO  com.dbility.batch.TimeZoneTest - Asia/Chongqing
13:04:52.404 INFO  com.dbility.batch.TimeZoneTest - Asia/Chungking
13:04:52.404 INFO  com.dbility.batch.TimeZoneTest - Asia/Harbin
13:04:52.404 INFO  com.dbility.batch.TimeZoneTest - Asia/Hong_Kong
13:04:52.404 INFO  com.dbility.batch.TimeZoneTest - Asia/Irkutsk
13:04:52.405 INFO  com.dbility.batch.TimeZoneTest - Asia/Kuala_Lumpur
13:04:52.405 INFO  com.dbility.batch.TimeZoneTest - Asia/Kuching
13:04:52.406 INFO  com.dbility.batch.TimeZoneTest - Asia/Macao
13:04:52.406 INFO  com.dbility.batch.TimeZoneTest - Asia/Macau
13:04:52.406 INFO  com.dbility.batch.TimeZoneTest - Asia/Makassar
13:04:52.407 INFO  com.dbility.batch.TimeZoneTest - Asia/Manila
13:04:52.407 INFO  com.dbility.batch.TimeZoneTest - Asia/Shanghai
13:04:52.407 INFO  com.dbility.batch.TimeZoneTest - Asia/Singapore
13:04:52.408 INFO  com.dbility.batch.TimeZoneTest - Asia/Taipei
13:04:52.408 INFO  com.dbility.batch.TimeZoneTest - Asia/Ujung_Pandang
13:04:52.408 INFO  com.dbility.batch.TimeZoneTest - Asia/Ulaanbaatar
13:04:52.408 INFO  com.dbility.batch.TimeZoneTest - Asia/Ulan_Bator
13:04:52.409 INFO  com.dbility.batch.TimeZoneTest - Australia/Perth
13:04:52.409 INFO  com.dbility.batch.TimeZoneTest - Australia/West
13:04:52.409 INFO  com.dbility.batch.TimeZoneTest - CTT
13:04:52.409 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT-8
13:04:52.409 INFO  com.dbility.batch.TimeZoneTest - Hongkong
13:04:52.409 INFO  com.dbility.batch.TimeZoneTest - PRC
13:04:52.409 INFO  com.dbility.batch.TimeZoneTest - Singapore
13:04:52.410 INFO  com.dbility.batch.TimeZoneTest - Australia/Eucla
13:04:52.410 INFO  com.dbility.batch.TimeZoneTest - Asia/Dili
13:04:52.411 INFO  com.dbility.batch.TimeZoneTest - Asia/Jayapura
13:04:52.411 INFO  com.dbility.batch.TimeZoneTest - Asia/Khandyga
13:04:52.412 INFO  com.dbility.batch.TimeZoneTest - Asia/Pyongyang
13:04:52.412 INFO  com.dbility.batch.TimeZoneTest - Asia/Seoul
13:04:52.412 INFO  com.dbility.batch.TimeZoneTest - Asia/Tokyo
13:04:52.413 INFO  com.dbility.batch.TimeZoneTest - Asia/Yakutsk
13:04:52.413 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT-9
13:04:52.413 INFO  com.dbility.batch.TimeZoneTest - JST
13:04:52.413 INFO  com.dbility.batch.TimeZoneTest - Japan
13:04:52.414 INFO  com.dbility.batch.TimeZoneTest - Pacific/Palau
13:04:52.414 INFO  com.dbility.batch.TimeZoneTest - ROK
13:04:52.414 INFO  com.dbility.batch.TimeZoneTest - ACT
13:04:52.415 INFO  com.dbility.batch.TimeZoneTest - Australia/Adelaide
13:04:52.415 INFO  com.dbility.batch.TimeZoneTest - Australia/Broken_Hill
13:04:52.415 INFO  com.dbility.batch.TimeZoneTest - Australia/Darwin
13:04:52.415 INFO  com.dbility.batch.TimeZoneTest - Australia/North
13:04:52.415 INFO  com.dbility.batch.TimeZoneTest - Australia/South
13:04:52.416 INFO  com.dbility.batch.TimeZoneTest - Australia/Yancowinna
13:04:52.416 INFO  com.dbility.batch.TimeZoneTest - AET
13:04:52.417 INFO  com.dbility.batch.TimeZoneTest - Antarctica/DumontDUrville
13:04:52.417 INFO  com.dbility.batch.TimeZoneTest - Asia/Magadan
13:04:52.418 INFO  com.dbility.batch.TimeZoneTest - Asia/Sakhalin
13:04:52.418 INFO  com.dbility.batch.TimeZoneTest - Asia/Ust-Nera
13:04:52.419 INFO  com.dbility.batch.TimeZoneTest - Asia/Vladivostok
13:04:52.419 INFO  com.dbility.batch.TimeZoneTest - Australia/ACT
13:04:52.420 INFO  com.dbility.batch.TimeZoneTest - Australia/Brisbane
13:04:52.420 INFO  com.dbility.batch.TimeZoneTest - Australia/Canberra
13:04:52.420 INFO  com.dbility.batch.TimeZoneTest - Australia/Currie
13:04:52.421 INFO  com.dbility.batch.TimeZoneTest - Australia/Hobart
13:04:52.421 INFO  com.dbility.batch.TimeZoneTest - Australia/Lindeman
13:04:52.422 INFO  com.dbility.batch.TimeZoneTest - Australia/Melbourne
13:04:52.422 INFO  com.dbility.batch.TimeZoneTest - Australia/NSW
13:04:52.422 INFO  com.dbility.batch.TimeZoneTest - Australia/Queensland
13:04:52.422 INFO  com.dbility.batch.TimeZoneTest - Australia/Sydney
13:04:52.423 INFO  com.dbility.batch.TimeZoneTest - Australia/Tasmania
13:04:52.423 INFO  com.dbility.batch.TimeZoneTest - Australia/Victoria
13:04:52.423 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT-10
13:04:52.424 INFO  com.dbility.batch.TimeZoneTest - Pacific/Chuuk
13:04:52.424 INFO  com.dbility.batch.TimeZoneTest - Pacific/Guam
13:04:52.425 INFO  com.dbility.batch.TimeZoneTest - Pacific/Port_Moresby
13:04:52.425 INFO  com.dbility.batch.TimeZoneTest - Pacific/Saipan
13:04:52.426 INFO  com.dbility.batch.TimeZoneTest - Pacific/Truk
13:04:52.426 INFO  com.dbility.batch.TimeZoneTest - Pacific/Yap
13:04:52.426 INFO  com.dbility.batch.TimeZoneTest - Australia/LHI
13:04:52.426 INFO  com.dbility.batch.TimeZoneTest - Australia/Lord_Howe
13:04:52.427 INFO  com.dbility.batch.TimeZoneTest - Antarctica/Macquarie
13:04:52.428 INFO  com.dbility.batch.TimeZoneTest - Asia/Srednekolymsk
13:04:52.429 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT-11
13:04:52.429 INFO  com.dbility.batch.TimeZoneTest - Pacific/Bougainville
13:04:52.430 INFO  com.dbility.batch.TimeZoneTest - Pacific/Efate
13:04:52.430 INFO  com.dbility.batch.TimeZoneTest - Pacific/Guadalcanal
13:04:52.431 INFO  com.dbility.batch.TimeZoneTest - Pacific/Kosrae
13:04:52.431 INFO  com.dbility.batch.TimeZoneTest - Pacific/Noumea
13:04:52.432 INFO  com.dbility.batch.TimeZoneTest - Pacific/Pohnpei
13:04:52.432 INFO  com.dbility.batch.TimeZoneTest - Pacific/Ponape
13:04:52.432 INFO  com.dbility.batch.TimeZoneTest - SST
13:04:52.432 INFO  com.dbility.batch.TimeZoneTest - Pacific/Norfolk
13:04:52.433 INFO  com.dbility.batch.TimeZoneTest - Antarctica/McMurdo
13:04:52.433 INFO  com.dbility.batch.TimeZoneTest - Antarctica/South_Pole
13:04:52.434 INFO  com.dbility.batch.TimeZoneTest - Asia/Anadyr
13:04:52.434 INFO  com.dbility.batch.TimeZoneTest - Asia/Kamchatka
13:04:52.435 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT-12
13:04:52.435 INFO  com.dbility.batch.TimeZoneTest - Kwajalein
13:04:52.435 INFO  com.dbility.batch.TimeZoneTest - NST
13:04:52.435 INFO  com.dbility.batch.TimeZoneTest - NZ
13:04:52.435 INFO  com.dbility.batch.TimeZoneTest - Pacific/Auckland
13:04:52.436 INFO  com.dbility.batch.TimeZoneTest - Pacific/Fiji
13:04:52.436 INFO  com.dbility.batch.TimeZoneTest - Pacific/Funafuti
13:04:52.437 INFO  com.dbility.batch.TimeZoneTest - Pacific/Kwajalein
13:04:52.437 INFO  com.dbility.batch.TimeZoneTest - Pacific/Majuro
13:04:52.438 INFO  com.dbility.batch.TimeZoneTest - Pacific/Nauru
13:04:52.438 INFO  com.dbility.batch.TimeZoneTest - Pacific/Tarawa
13:04:52.439 INFO  com.dbility.batch.TimeZoneTest - Pacific/Wake
13:04:52.439 INFO  com.dbility.batch.TimeZoneTest - Pacific/Wallis
13:04:52.440 INFO  com.dbility.batch.TimeZoneTest - NZ-CHAT
13:04:52.440 INFO  com.dbility.batch.TimeZoneTest - Pacific/Chatham
13:04:52.440 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT-13
13:04:52.441 INFO  com.dbility.batch.TimeZoneTest - MIT
13:04:52.441 INFO  com.dbility.batch.TimeZoneTest - Pacific/Apia
13:04:52.441 INFO  com.dbility.batch.TimeZoneTest - Pacific/Enderbury
13:04:52.442 INFO  com.dbility.batch.TimeZoneTest - Pacific/Fakaofo
13:04:52.442 INFO  com.dbility.batch.TimeZoneTest - Pacific/Tongatapu
13:04:52.443 INFO  com.dbility.batch.TimeZoneTest - Etc/GMT-14
13:04:52.443 INFO  com.dbility.batch.TimeZoneTest - Pacific/Kiritimati
13:04:52.444 INFO  com.dbility.batch.TimeZoneTest - Antarctica/Palmer
13:04:52.445 INFO  com.dbility.batch.TimeZoneTest - America/Grand_Turk
13:04:52.445 INFO  com.dbility.batch.TimeZoneTest - America/Santiago
13:04:52.446 INFO  com.dbility.batch.TimeZoneTest - Pacific/Easter
13:04:52.446 INFO  com.dbility.batch.TimeZoneTest - Chile/EasterIsland
13:04:52.446 INFO  com.dbility.batch.TimeZoneTest - Chile/Continental

 

반응형
Comments