importorg.apache.commons.lang3.StringUtils;importorg.springframework.core.convert.converter.Converter;importjava.time.LocalTime;/** * @author Danny Lee * @since 2019-05-31 13:39 */publicclassStringToLocalTimeConverterimplementsConverter<String,LocalTime>{@OverridepublicLocalTimeconvert(Stringsource){if(StringUtils.isEmpty(source)){returnnull;}returnDateUtil.parseStringToTime(source,DateUtil.SHORT_TIME_FORMAT);}}