我有这个查询字符串:
coll.find(and(DBQuery.greaterThanEquals("createdOn", startDate), DBQuery.lessThanEquals("createdOn", endDate),DBQuery.is("user_email",userEmail)));
我收到错误消息:
cannot find symbol [symbol: variable DBQuery] [location: class models.food.UserMeal]
现在是一个普通的数据库查询
coll.find(); 工作顺利。我缺少什么软件包才能使其正常工作?
更新 :
我尝试导入: import org.mongojack.DBQuery; 而是得到了错误:包 org.mongojack 不存在