cn.ipokerface.web.spring.converter.LocalDateTimeConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-web Show documentation
Show all versions of spring-web Show documentation
Common Library of ipokerface
The newest version!
package cn.ipokerface.web.spring.converter;
import cn.ipokerface.common.utils.LocalTimeUtils;
import cn.ipokerface.common.utils.StringUtils;
import org.springframework.core.convert.converter.Converter;
import java.time.LocalDateTime;
public class LocalDateTimeConverter implements Converter {
@Override
public LocalDateTime convert(String s) {
if (StringUtils.isEmpty(s)) return null;
try{
Long longValue = Long.parseLong(s);
return LocalTimeUtils.parse(longValue);
}catch (Exception e){
}
return LocalTimeUtils.parse(s);
}
}