org.codehaus.jackson.map.deser.TimestampDeserializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of barchart-wrap-jackson Show documentation
Show all versions of barchart-wrap-jackson Show documentation
bundle wrapper for json libs:
http://jackson.codehaus.org/
http://www.json.org/java/
https://github.com/FasterXML/jackson-datatype-json-org
The newest version!
package org.codehaus.jackson.map.deser;
import java.io.IOException;
import java.sql.Timestamp;
import org.codehaus.jackson.JsonProcessingException;
import org.codehaus.jackson.JsonParser;
import org.codehaus.jackson.map.DeserializationContext;
/**
* Simple deserializer for handling {@link java.sql.Timestamp} values.
*
* One way to customize Timestamp formats accepted is to override method
* {@link DeserializationContext#parseDate} that this basic
* deserializer calls.
*/
public class TimestampDeserializer
extends StdScalarDeserializer
{
public TimestampDeserializer() { super(Timestamp.class); }
@Override
public java.sql.Timestamp deserialize(JsonParser jp, DeserializationContext ctxt)
throws IOException, JsonProcessingException
{
return new Timestamp(_parseDate(jp, ctxt).getTime());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy