org.bson.codecs.configuration.CodecConfigurationException:找不到 class org.hibernate.ogm.datastore.mongodb.type.GridFS 的编解码器
org.bson.codecs.configuration.CodecConfigurationException: Can't find a codec for class org.hibernate.ogm.datastore.mongodb.type.GridFS
我正在尝试在 Hibernate-ogm 中使用 GridFS。
这简直就是我的class
import org.hibernate.ogm.datastore.mongodb.type.GridFS;
@Embeddable
public class MyEntity implements Serializable{
private String name;
public MyEntity () {
}
GridFS list;
}
当我尝试使该实体持久化时,在运行时出现标题错误。 list
字段上的 Eclipse IDE 显示 "Attribute list has invalid mapping type in this context".
目前,GridFS 类型不适用于关联。您只能将其用作实体的属性。
这里有一个问题:https://hibernate.atlassian.net/browse/OGM-1553
您还可以在论坛中找到更多信息:https://discourse.hibernate.org/t/org-hibernate-hibernateexception-ogm000080-could-not-load-an-entity-batch/2148
我正在尝试在 Hibernate-ogm 中使用 GridFS。 这简直就是我的class
import org.hibernate.ogm.datastore.mongodb.type.GridFS;
@Embeddable
public class MyEntity implements Serializable{
private String name;
public MyEntity () {
}
GridFS list;
}
当我尝试使该实体持久化时,在运行时出现标题错误。 list
字段上的 Eclipse IDE 显示 "Attribute list has invalid mapping type in this context".
目前,GridFS 类型不适用于关联。您只能将其用作实体的属性。
这里有一个问题:https://hibernate.atlassian.net/browse/OGM-1553 您还可以在论坛中找到更多信息:https://discourse.hibernate.org/t/org-hibernate-hibernateexception-ogm000080-could-not-load-an-entity-batch/2148