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

com.maccloud.spring.converter.TimestampConverter Maven / Gradle / Ivy

package com.maccloud.spring.converter;

import org.springframework.core.convert.converter.Converter;

import java.sql.Timestamp;
import java.util.Date;

public class TimestampConverter implements Converter {

    @Override
    public Timestamp convert(String value) {
        Date date = DateConverter.toDate(value);
        return date == null ? null : new Timestamp(date.getTime());
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy