简体   繁体   中英

how to find document with mongoDB using mongodb java in sub array of document?

This is really hard. I want to find the select nodes.index where radio.mac_address="00:06:5A:03:2E:5B" . how can I get this query in MongoDB using java? My mongodb is as following.

在此处输入图片说明

I tried so many queries. one of them is as following

BasicDBObject query = new BasicDBObject("nodes.radios.mac_address", "mac_address value";
BasicDBObject fields = new BasicDBObject("nodes.$", 1);
DBCursor cursor = node_info.find(query, fields);

Updated First on got solved

How can i also write update query like update rssiLocal="90" where mac_address="00:06:5A:03:2E:5B" .

In my application I use following method. It finds an object according to given id parses it via Gson and saves it to corresponding object.

 public MyEntity getValue(String id) {
        DB db = SessionManager.getInstance().db;
        DBCollection collection = db.getCollection("myCollection");
        BasicDBObject query = new BasicDBObject("_id", id);
        Object object = new Object();
        boolean found = false;

        DBCursor cursor = collection.find(query);
        try {
            while (cursor.hasNext()) {
                found = true;
                String str = (cursor.next().toString());
                Gson gson = new Gson();

                object = gson.fromJson(str, MyEntity.class);

            }
        } finally {
            cursor.close();
        }
        if (!found)
            return new MyEntity();
        MyEntity myEntity = null;
        myEntity = (MyEntity) object;
        return myEntity;
    }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM