请教compass如何映射java.util.Map类型
商品类Goods(id,name,。。。)
@SearchableComponent
@CollectionOfElements
@MapKey(targetElement = GoodsAttribute.class)
@LazyCollection(LazyCollectionOption.TRUE)
@Cascade(value = { CascadeType.DELETE })
public Map<GoodsAttribute, String> getGoodsAttributeMapStore() {
return goodsAttributeMapStore;
}
属性类GoodsAttribute(id,name)
启动时报Tried to resolve ref-alias for property [goodsAttributeMapStore] in alias [Goods], but no class mapping was found for [java.util.Map]
网上找答案说是用写了一个converter就解决了~~本人水品不够~希望哪位帮忙解决下~~谢谢~~
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
顶~~