com.haoxuer.discover.web.conver.CustomDateEditor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of discover-website Show documentation
Show all versions of discover-website Show documentation
discover网站配置模块,主要管理网站主题,网站配置等功能
package com.haoxuer.discover.web.conver;
import java.beans.PropertyEditorSupport;
import org.springframework.util.StringUtils;
public class CustomDateEditor extends PropertyEditorSupport {
@Override
public void setAsText(String text) {
if (StringUtils.hasText(text)) {
this.setValue(DateConver.getDefault().conver(text));
} else {
this.setValue((Object) null);
}
}
}