我是Spring Data Mongo的新手,所以我必须做错事,因为我无法设法执行这样一个简单的查询。这是我的模特:
@Document(collection="brands")
public class Brand{
@Id
private int id;
private String name;
...
//getters-setters
}
@Document(collection="models")
public class Model{
@Id
private int id;
private String name;
@DBRef
private Brand brand;
...
//getters-setters
}
我想从一个品牌获得所有型号,所以我按如下方式实施DAO:
@Repository
public interface IModelDAO extends MongoRepository<Model, Integer>{
@Query(value="{ 'brand.$id' : ?0 }")
public List<Model> findByBrandId(Integer id);
}
如果我在shell中执行这个mongodb查询,它可以工作:db.modelss.find({ 'brand.$id' : 1 })
但是,Java应用程序抛出以下异常:
Caused by: java.lang.IllegalAccessError
at org.springframework.data.mapping.PropertyReferenceException.detectPotentialMatches(PropertyReferenceException.java:134)
显然它正在寻找Brand类中的字段$ id,因为它不存在,所以它失败了。所以我将查询更改为以下内容,以便导航到id字段:
@Query(value="{ 'brand.id' : ?0 }")
现在,它不会抛出异常,但它在数据库中找不到任何内容。
调试MongoTemplate.executeFindMultiInternal()方法可以在
中看到DBCursor cursor = null;
try {
cursor = collectionCallback.doInCollection(getAndPrepareCollection(getDb(), collectionName));
光标的查询是query={ "brand" : 134}
。所以它没有找到任何东西是有道理的。在调试期间将查询值更改为query = {&#34; brand。$ id&#34; :134}它有效。
那么,为什么查询没有正确翻译?
答案 0 :(得分:5)
问题是由@Id
int 类型引起的。将它改为整数解决了它:
@Document(collection="brands")
public class Brand{
@Id
private Integer id;
private String name;
...
//getters-setters
}
@Document(collection="models")
public class Model{
@Id
private Integer id;
private String name;
@DBRef
private Brand brand;
...
//getters-setters
}
答案 1 :(得分:0)
试试这个;
Query que = new Query();
que.addCriteria(Criteria.where("user.$id").is(new ObjectId("123456789012345678901234")));