Grails Date unmarshalling

前端 未结 2 527
星月不相逢
星月不相逢 2020-12-01 08:48

If I get the following json from a RESTful client, how do I elegantly unmarshal the java.util.Date? (Is it possible without providing (aka. hard-coding) the format, that\'s

2条回答
  •  不思量自难忘°
    2020-12-01 09:18

    The cleanest way is probably to register a custom DataBinder for possible date formats.

    import java.beans.PropertyEditorSupport;
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    
    public class CustomDateBinder extends PropertyEditorSupport {
    
        private final List formats;
    
        public CustomDateBinder(List formats) {
            List formatList = new ArrayList(formats.size());
            for (Object format : formats) {
                formatList.add(format.toString()); // Force String values (eg. for GStrings)
            }
            this.formats = Collections.unmodifiableList(formatList);
        }
    
        @Override
        public void setAsText(String s) throws IllegalArgumentException {
            if (s != null)
                for (String format : formats) {
                    // Need to create the SimpleDateFormat every time, since it's not thead-safe
                    SimpleDateFormat df = new SimpleDateFormat(format);
                    try {
                        setValue(df.parse(s));
                        return;
                    } catch (ParseException e) {
                        // Ignore
                    }
                }
        }
    }
    

    You'd also need to implement a PropertyEditorRegistrar

    import org.springframework.beans.PropertyEditorRegistrar;
    import org.springframework.beans.PropertyEditorRegistry;
    
    import grails.util.GrailsConfig;
    import java.util.Date;
    import java.util.List;
    
    public class CustomEditorRegistrar implements PropertyEditorRegistrar {
        public void registerCustomEditors(PropertyEditorRegistry reg) {
            reg.registerCustomEditor(Date.class, new CustomDateBinder(GrailsConfig.get("grails.date.formats", List.class)));
        }
    }          
    

    and create a Spring-bean definition in your grails-app/conf/spring/resources.groovy:

    beans = {
        "customEditorRegistrar"(CustomEditorRegistrar)
    }
    

    and finally define the date formats in your grails-app/conf/Config.groovy:

    grails.date.formats = ["yyyy-MM-dd HH:mm:ss.SSS ZZZZ", "dd.MM.yyyy HH:mm:ss"]
    

提交回复
热议问题