我有一个弹簧@Document object Profile
我想引用类似的GridFSFile:
@DbRef
private GridFSFile file;
该文件被写入另一个集合类型GridFS。
当我设置profile.setFile(file);
时,我总是有一个java.lang.StackOverflowError
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)
我不明白,如果有人想参考一个文件,我感兴趣
谢谢,Xavier
我想要类似的东西,但没有找到方法,所以我做了这个变通办法。
在@Document类中,放置一个ObjectId
字段
@Document
public class MyDocument {
//...
private ObjectId file;
}
然后在您的存储库中,按照Oliver Gierke的建议,使用GridFsTemplate
:添加自定义方法将文件链接到此MyDocument
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());
}