MongoDB
 sql >> डेटाबेस >  >> NoSQL >> MongoDB

GSON और TypeAdapter का उपयोग करके POJO में BSON (mongoDB) पढ़ें

मैंने इसे एक CustomizedTypeAdapterFactory का उपयोग करके हल किया। यह प्रश्न देखें

मूल रूप से पहले एक अनुकूलित एडेप्टर लिखें:

public abstract class CustomizedTypeAdapterFactory<C>
        implements TypeAdapterFactory
{
    private final Class<C> customizedClass;

    public CustomizedTypeAdapterFactory(Class<C> customizedClass) {
        this.customizedClass = customizedClass;
    }

    @SuppressWarnings("unchecked") // we use a runtime check to guarantee that 'C' and 'T' are equal
    public final <T> TypeAdapter<T> create(Gson gson, TypeToken<T> type) {
        return type.getRawType() == customizedClass
                ? (TypeAdapter<T>) customizeMyClassAdapter(gson, (TypeToken<C>) type)
                : null;
    }

    private TypeAdapter<C> customizeMyClassAdapter(Gson gson, TypeToken<C> type) {
        final TypeAdapter<C> delegate = gson.getDelegateAdapter(this, type);
        final TypeAdapter<JsonElement> elementAdapter = gson.getAdapter(JsonElement.class);
        return new TypeAdapter<C>() {
            @Override public void write(JsonWriter out, C value) throws IOException
            {
                JsonElement tree = delegate.toJsonTree(value);
                beforeWrite(value, tree);
                elementAdapter.write(out, tree);
            }
            @Override public C read(JsonReader in) throws IOException {
                JsonElement tree = elementAdapter.read(in);
                afterRead(tree);
                return delegate.fromJsonTree(tree);
            }
        };
    }

    /**
     * Override this to muck with {@code toSerialize} before it is written to
     * the outgoing JSON stream.
     */
    protected void beforeWrite(C source, JsonElement toSerialize) {
    }

    /**
     * Override this to muck with {@code deserialized} before it parsed into
     * the application type.
     */
    protected void afterRead(JsonElement deserialized) {
    }
}

और फिर उन सभी वर्गों के लिए उपवर्ग बनाएं जिन्हें ध्यान में रखा जाना चाहिए। आपको प्रत्येक वर्ग के लिए एक लंबा बनाना होगा (इस मामले में)। लेकिन आपको लंबे मान (और किसी अन्य bson विशिष्ट मान) के अलावा कुछ भी क्रमबद्ध करने की आवश्यकता नहीं है

public class MyTestObjectTypeAdapterFactory extends CustomizedTypeAdapterFactory<MyTestObject>
{
    public MyTestObjectTypeAdapterFactory()
    {
        super(MyTestObject.class);
    }

    @Override
    protected void beforeWrite(MyTestObject source, JsonElement toSerialize)
    {
        //you could convert back the other way here, I let mongo's document parser take care of that.
    }

    @Override
    protected void afterRead(JsonElement deserialized)
    {
        JsonObject timestamp = deserialized.getAsJsonObject().get("timestamp").getAsJsonObject();
        deserialized.getAsJsonObject().remove("timestamp");
        deserialized.getAsJsonObject().add("timestamp",timestamp.get("$numberLong"));
    }
}

और फिर इसके साथ Gson जेनरेट करें:

Gson gson = new GsonBuilder().registerTypeAdapterFactory(new MyTestObjectTypeAdapterFactory()).create();



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. MongoDB में रनवे इंडेक्स बिल्ड को कैसे रोकें?

  2. उप-दस्तावेज़ों के नेस्टेड सरणी सहित क्वेरी बिल्डर शर्तों को MongoDB संचालन में बदलें

  3. angular.js के साथ नोटिफिकेशन कैसे पुश करें?

  4. Mongoengine, केवल कुछ MapField को पुनः प्राप्त कर रहा है

  5. किसी ऑब्जेक्ट को कैसे निर्यात करें जो केवल एसिंक कॉलबैक में उपलब्ध हो?