gpt4 book ai didi

java - 如何在 Hibernate 中注解 Map> 或 Map>

转载 作者:行者123 更新时间:2023-11-29 03:37:51 30 4
gpt4 key购买 nike

使用 Hibernate Core 4.1.7、JPA 注释、java 1.7

关于 Map 读取 Hibernate doc on collections 的示例很容易细化, 或 Map here (stackoverflow) .

很难找到关于 Map<String, Set<String>> 的例子(甚至 Map > 只是出于对菊花链的好奇)为什么我在这里问这个问题。

我只想保存包含命名的多值属性(=帐户属性)的实体(帐户)。

我都在使用 3 种实体类型:Account -> @OneToMany -> AccountAttribute -> @OneToMany -> AccountAttributeValue

但对我来说,用我自己的类包装 native Java 类型似乎有点傻。克隆 Map 示例我想要类似的东西

@Entity
public class Account {

@Id @GeneratedValue(strategy = GenerationType.AUTO)
@Column(name="key")
private Long key;

@ElementCollection(fetch=FetchType.EAGER)
@JoinTable(name = "Attribute",
joinColumns = @JoinColumn(name = "fkAccount"))
@MapKeyColumn(name = "name")
// next line is working for Map<String, String>, but not here!
@Column(name = "value")
private Map<String, Set<String>> attributes = new HashMap<String, Set<String>>();

// ... omitting: constructor, getters, setters, toString()

}

这给了我
Initial SessionFactory creation failed: org.hibernate.MappingException: Could not determine type for: java.util.Set, at table: Attribute, for columns:[org.hibernate.mapping.Column(attributes)]

作为数据库布局,我创建了 2 个表。 - 表 Account只是有一把 key 指向外键 - 表 Attribute每行包含命名值。

例如对于多值属性,我认为它包含2 行 且具有相同的fkAccountname但不同value - 是的,我本可以规范化更多,但我想在可接受的时间内读取我的数据:-)

CREATE  TABLE IF NOT EXISTS `foo`.`Account` (
`key` INT NOT NULL AUTO_INCREMENT ,
...

CREATE TABLE IF NOT EXISTS `foo`.`Attribute` (
`fkAccount` INT NOT NULL ,
`name` VARCHAR(45) NOT NULL ,
`value` VARCHAR(45) NOT NULL
...

感谢任何提示或替代数据库布局建议。

编辑 - 已解决
汤姆的解决方案(据我所知)为我工作谢谢你们,多么棒的体验,1 天内解决!

上面我的问题中提到的表格布局现在适用于此类。

@Entity
public class Account {
/* ... omitting "key", see as above */

/* NEW: now @CollectionTable
replaces @JoinTable / @MapKeyColumn / @Column from above
*/
@ElementCollection(fetch = FetchType.EAGER)
@CollectionTable(name="AccountAttribute",
joinColumns=@JoinColumn(name="fkAccount"))
private Set<AccountAttribute> attributes = null;

// ... omitting: constructor, getters, setters, toString()
}

和新

    @Embeddable
public class AccountAttribute {

@Column(name="attributeName")
private String attributeName = null;

@Column(name="attributeValue")
private String attributeValue = null;

// ... omitting: constructor, getters, setters, toString()
}

最佳答案

JPA 不提供任何方式来映射任何集合的集合。您可以映射原语、对实体的引用、可嵌入物以及上述任何事物的集合。

Collection 指集合、列表或 map ;这里没有可以帮助您的多图类型。

因此,遗憾的是没有办法精确映射您想要映射的结构。

我认为最接近的是定义一个可嵌入类 Attribute ,包含名称和值,然后映射 Set<Attribute> .然后您可以将其转换为 Map<String, Set<String>>在代码中。

很遗憾没有办法做到这一点。我假设 JPA 规范的作者要么没有想到它,要么认为它是一个足够晦涩的角落案例,不值得处理。

关于java - 如何在 Hibernate 中注解 Map<String, Set<String>> 或 Map<String, Map<String, String>>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14570025/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com