我有一個稱爲MongoRule
JUnit rule
看起來像
public class MongoRule extends ExternalResource {
private static final Logger LOGGER = LoggerFactory.getLogger(MongoRule.class);
private final MongoService mongoService;
public MongoRule() throws UnknownHostException {
mongoService = new MongoService(getConfiguredHost(), getConfiguredPort(), getConfiguredDatabase());
}
@Override
protected void before() throws Throwable {
LOGGER.info(" Setting up Mongo Database - " + getConfiguredDatabase());
}
@Override
protected void after() {
LOGGER.info("Shutting down the Mongo Database - " + getConfiguredDatabase());
mongoService.getMongo().dropDatabase(getConfiguredDatabase());
}
@Nonnull
public DB getDatabase() {
return mongoService.getMongo().getDB(getConfiguredDatabase());
}
@Nonnull
public Mongo getMongo() {
return mongoService.getMongo();
}
@Nonnull
public MongoService getMongoService() {
return mongoService;
}
public static int getConfiguredPort() {
return Integer.parseInt(System.getProperty("com.db.port", "27017"));
}
@Nonnull
public static String getConfiguredDatabase() {
return System.getProperty("com.db.database", "database");
}
@Nonnull
public static String getConfiguredHost() {
return System.getProperty("com.db.host", "127.0.0.1");
}
}
然後我嘗試插入一些文檔如下
public static void saveInDatabase() {
LOGGER.info("preparing database - saving some documents");
mongoRule.getMongoService().putDocument(document1);
mongoRule.getMongoService().putDocument(document2);
}
在哪裏document1
和document2
是有效的DBObject
文件。該模式看起來像
{
Id: 001
date_created: 2012-10-31
vars: {
'1': {
name: n1
value:v1
}
'2': {
name: n2
value:v2
}
'3': {
name: n3
value:v3
}
}
{
Id: 002
date_created: 2012-10-30
vars: {
'1': {
name: n4
value:v4
}
'2': {
name: n5
value:v5
}
'3': {
name: n6
value:v6
}
}
現在我嘗試查詢收集和獲取這些對象,所以我這樣做
public static void getDocuments(List<String> documentIds) {
BasicDBList docIds = new BasicDBList();
for (String docId: documentIds) {
docIds.add(new BasicDBObject().put("Id", docId));
}
DBObject query = new BasicDBObject();
query.put("$in", docIds);
DBCursor dbCursor = mongoRule.getDatabase().getCollection("mycollection").find(query);
System.out.println(dbCursor == null);
if (dbCursor != null) {
while (dbCursor.hasNext()) {
System.out.println("object - " + dbCursor.next());
}
}
}
mycollection
是所有文件都堅持收集,這是來自外部服務。
當我運行這個文件我看到下面
preparing database - saving some documents
inserting document - DBProposal # document1
inserting document - DBProposal # document2
false
這意味着collection.find()
無法找到這些文件。
這是什麼我不在這裏做?我怎樣才能取回文件?
我很新的使用Java
與Mongo
和使用該reference構造查詢
UPDATE
更改查詢方式後構造,我還沒有看到文件
public static void getDocuments(List<String> documentIds) {
BasicDBList docIds = new BasicDBList();
docIds.addAll(documentIds)
DBObject query = new BasicDBObject();
query.put("$in", docIds);
DBCursor dbCursor = mongoRule.getDatabase().getCollection("mycollection").find(query);
System.out.println(dbCursor == null);
if (dbCursor != null) {
while (dbCursor.hasNext()) {
System.out.println("object - " + dbCursor.next());
}
}
}
和集合名稱通過
返回private static String getCollectionName(@Nonnull final DBObject dbObject) {
return "mycollection";
}
你可以發佈你的'putDocument'代碼,以及 - 只是確保了集合名稱是相同的:) – Ross 2012-07-25 15:18:22
此外,請確保您至少使用SAFE的寫入問題,否則在執行查找之前寫入操作可能未提交到內存,這意味着它不會找到任何文檔。 – christkv 2012-07-25 15:35:30
這不是一個有效的查詢。我會發布回覆。 – 2012-07-25 15:38:14