All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.quhaodian.web.conver.CustomDateEditor Maven / Gradle / Ivy

There is a newer version: 1.8.38
Show newest version
package com.quhaodian.web.conver;

import org.springframework.util.StringUtils;

import java.beans.PropertyEditorSupport;

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);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy