java – POJO到org.bson.Document和Vice Versa

前端之家收集整理的这篇文章主要介绍了java – POJO到org.bson.Document和Vice Versa前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有简单的方法将Simple POJO转换为org.bson.Document?

我知道有很多方法可以像这样做:

Document doc = new Document();
doc.append("name",person.getName()):

但它有一个更简单和更错误的方式吗?

解决方法

关键是,你不需要把手放在org.bson.Document上.

Morphia将在幕后为你做所有这些.

import com.mongodb.MongoClient;
import org.mongodb.morphia.Datastore;
import org.mongodb.morphia.DatastoreImpl;
import org.mongodb.morphia.Morphia;
import java.net.UnknownHostException;

.....
    private Datastore createDataStore() throws UnknownHostException {
        MongoClient client = new MongoClient("localhost",27017);
        // create morphia and map classes
        Morphia morphia = new Morphia();
        morphia.map(FooBar.class);
        return new DatastoreImpl(morphia,client,"testmongo");
    }

......

    //with the Datastore from above you can save any mapped class to mongo
    Datastore datastore;
    final FooBar fb = new FooBar("hello","world");
    datastore.save(fb);

在这里您可以找到几个例子:https://mongodb.github.io/morphia/

原文链接:https://www.f2er.com/java/126914.html

猜你在找的Java相关文章