3

私の単純なアプリケーションは、MongoDB に と の間のマッピングを設定するだけであると想定してい_idますuser。私のキー ( _id) は JSON 形式で、その値は単なる long です。

{
    "_id": {
        "a": "1B2ac",
        "b": "Windows NT 5.2; WOW64; rv:16.0 Ff/6.0"
    },
    "user": 1999129
}

いくつかの問題があります。

問題 1:can's serialize class...挿入しようとすると、次のようになります。

Caused by: java.lang.IllegalArgumentException: can't serialize class test.mongo.foo.DummyObject
    at org.bson.BSONEncoder._putObjectField(BSONEncoder.java:234)
    at org.bson.BSONEncoder.putObject(BSONEncoder.java:121)
    at org.bson.BSONEncoder.putObject(BSONEncoder.java:86)
    at com.mongodb.OutMessage.putObject(OutMessage.java:190)
    at com.mongodb.DBApiLayer$MyCollection.insert(DBApiLayer.java:253)
    at com.mongodb.DBApiLayer$MyCollection.insert(DBApiLayer.java:217)
    at com.mongodb.DBCollection.insert(DBCollection.java:102)
    at     com.test.mongo.foo.DaoImpl.insertRecords(DaoImpl.java:130)

DummyObjectこれが(を実装する)の私のクラスですSerializable

 package test.mongo.foo;

import java.io.Serializable;

public class DummyObject implements Serializable{

    private static final long serialVersionUID = -2715467675581503964L;

    //default constructor
    public DummyObject(){

    }

    private String a;
    private String b;

    public String getA() {
        return a;
    }

    public String getB() {
        return b;
    }

    public void setA(String a) {
        this.a = a;
    }

    public void setB(String b) {
        this.b = b;
    }

}

ここに私のDaoImpクラスがあります

package test.mongo.foo;
public class DaoImpl extends MongoDAOImpl{

    public int insertRecords(List<DBObject> records) {
        DBCollection coll = getDBCollection();

        Exception e = null;
        try {
            WriteResult res =  coll.insert(records);
            if (res.getError() != null) {
                throw new MongoRuntimeException(res.getError());
            }
            return res.getN();
        } catch (Exception err) {
            e = err;
            throw new MongoRuntimeException(err);
        }
    }

    public static DBObject convertToDBObject(DummyObject obj, long value) {
        DBObject bdbo = new BasicDBObject();
        bdbo.put("_id",obj);
        bdbo.put("user",value);
        return bdbo;
    }
    public static void main(String [] args){
          DummyObject d = new DummyObject();
           d.setA("1B2ac");
           d.setB("Windows NT 5.2; WOW64; rv:16.0 Ff/6.0");
           long val = 1999129;
           List<DBObject> l = new ArrayList<DBObject>();
           l.add(DaoImpl.convertToDBObject(d,val));
           DaoImpl impl = new DaoImpl();
    }
}

問題 2:上記の問題を回避するために、文字列から文字列へのマッピングを使用してレコードを挿入しようとしました。入力文字列 ( for _id) はエスケープされていませんが、DBObject内部でエスケープされ、最終的に次のように MongoDB に書き込まれます。

{
    "_id": {
        \"a\": \"1B2ac\",
        \"b\": \"WindowsNT5.2;WOW64;rv: 16.0Ff/6.0\"
    },
    "user": NumberLong(1999129)
}

それ以外の

{
    "_id": {
        "a": "1B2ac",
        "b": "Windows NT 5.2; WOW64; rv:16.0 Ff/6.0"
    },
    "user": 1999129
}

これらの両方の問題を解決する方法について何か提案はありますか? どんな指針も高く評価されます。

4

1 に答える 1