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

io.github.baozi926.geo.fastjson.FeatureCollectionDeserializer Maven / Gradle / Ivy

package io.github.baozi926.geo.fastjson;

import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonDeserializer;
import io.github.baozi926.geo.GeoJsonUtil;
import io.github.baozi926.geo.exception.GeoException;
import org.geotools.feature.FeatureCollection;

import java.io.IOException;

/**
 * @author 蔡惠民
 *
 *
 */
public class FeatureCollectionDeserializer extends JsonDeserializer {

    @Override
    public FeatureCollection deserialize(JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException {

        try {
            return GeoJsonUtil.fromJson(jsonParser.readValueAsTree().toString());
        } catch (GeoException e) {
            return null;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy