如何使用@DbRef注释引用GridFSFile(spring data mongodb)

时间:2012-02-06 18:21:01

标签: java spring gridfs mongodb-java dbref

我有一个春天@Document object Profile

我想像它一样引用GridFSFile:

@DbRef
private GridFSFile file;

该文件被写入另一种集合类型GridFS。

当我设置java.lang.StackOverflowError

时,我总是有一个profile.setFile(file);
java.lang.StackOverflowError
at org.springframework.util.ObjectUtils.nullSafeHashCode(ObjectUtils.java:336)
at org.springframework.data.util.TypeDiscoverer.hashCode(TypeDiscoverer.java:365)
at org.springframework.data.util.ClassTypeInformation.hashCode(ClassTypeInformation.java:39)
at org.springframework.util.ObjectUtils.nullSafeHashCode(ObjectUtils.java:336)
at org.springframework.data.util.ParentTypeAwareTypeInformation.hashCode(ParentTypeAwareTypeInformation.java:79)
at org.springframework.util.ObjectUtils.nullSafeHashCode(ObjectUtils.java:336)

我不明白,如果有人有想法引用我感兴趣的文件

谢谢, 泽维尔

1 个答案:

答案 0 :(得分:1)

我想要类似的东西,并没有找到方法,所以我做了这个解决方法。

在@Document课程中,添加ObjectId字段

@Document
public class MyDocument {
     //...    
     private ObjectId file;
}

然后在您的存储库中,添加自定义方法,将文件链接到此MyDocument,跟随advices from Oliver Gierke并使用GridFsTemplate

public class MyDocumentRepositoryImpl implements MyDocumentRepositoryCustom {

    public static final String MONGO_ID = "_id";


    @Autowired
    GridFsTemplate gridFsTemplate;

    @Override
    public void linkFileToMyDoc(MyDocument myDocument, InputStream stream, String fileName) {
        GridFSFile fsFile = gridFsTemplate.store(stream, fileName);
        myDocument.setFile( (ObjectId) fsFile.getId());
    }

    @Override
    public void unLinkFileToMyDoc(MyDocument myDocument)
    {
        ObjectId objectId = myDocument.getFile();

        if (null != objectId)  {
            gridFsTemplate.delete( Query.query(Criteria.where(MONGO_ID).is(objectId)) );
            myDocument.setFile(null);
        }
    }
}

顺便说一句,您需要在JavaConf中声明GridFsTemplate以自动装配它

@Bean
public GridFsTemplate gridFsTemplate() throws Exception {
    return new GridFsTemplate(mongoDbFactory(), mappingMongoConverter());
}