- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用 Hibernate Core 4.1.7、JPA 注释、java 1.7
关于 Map
很难找到关于 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 行 且具有相同的fkAccount
和 name
但不同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/
我是一名优秀的程序员,十分优秀!