当前位置: 首页 > 工具软件 > Jongo > 使用案例 >

Query in Java as in Mongo shell 【Jongo】

施利
2023-12-01

what ?

在 java 中直接使用 shell 操作 mongodb

how ?

DB db = new MongoClient().getDB("dbname");

Jongo jongo = new Jongo(db);
MongoCollection friends = jongo.getCollection("friends");

MongoCursor<Friend> all = friends.find("{name: 'Joe'}").as(Friend.class);
Friend one = friends.findOne("{name: 'Joe'}").as(Friend.class);

why ?

  1. 最直接的作用是可以简化代码量
  2. 在 java 中使用 shell 操作很灵活方便
  3. 性能更好

other

官方
http://jongo.org/

github
https://github.com/bguerout/jongo

 类似资料:

相关阅读

相关文章

相关问答