这是我的JPA实体类:
@Cacheable
@Entity
public class JpaItemSearchRequest implements ItemSearchRequest {
@Id
@GeneratedValue
private long id;
@Enumerated(EnumType.STRING)
private SearchIndex searchIndex;
private String browseNode;
private String keywords;
@Enumerated(EnumType.STRING)
@ElementCollection
private Set<ResponseGroup> responseGroups = new HashSet<ResponseGroup>();
private int itemPage;
@Enumerated(EnumType.STRING)
private Locale locale;
... end of fields ...
}
这个类有一个相当复杂的唯一约束:(searchIndex,browseNode,keywords,responseGroups,itemPage,locale)
的组合被认为是唯一的。
所以我在类中添加了以下约束注释:
@Table(uniqueConstraints = { @UniqueConstraint(columnNames = { "searchIndex", "browseNode", "keywords", "responseGroups", "itemPage", "locale" }) })
当我尝试练习我的课时,我得到以下例外情况:
org.hibernate.AnnotationException: Unable to create unique key constraint (searchIndex, browseNode, keywords, responseGroups, itemPage, locale) on table JpaItemSearchRequest: database column responseGroups not found. Make sure that you use the correct column name which depends on the naming strategy in use (it may not be the same as the property name in the entity, especially for relational types)
at org.hibernate.cfg.Configuration.buildUniqueKeyFromColumnNames(Configuration.java:1584) ~[hibernate-core-4.1.7.Final.jar:4.1.7.Final]
at org.hibernate.cfg.Configuration.secondPassCompile(Configuration.java:1386) ~[hibernate-core-4.1.7.Final.jar:4.1.7.Final]
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1737) ~[hibernate-core-4.1.7.Final.jar:4.1.7.Final]
at org.hibernate.ejb.EntityManagerFactoryImpl.<init>(EntityManagerFactoryImpl.java:94) ~[hibernate-entitymanager-4.1.7.Final.jar:4.1.7.Final]
at org.hibernate.ejb.Ejb3Configuration.buildEntityManagerFactory(Ejb3Configuration.java:905) ~[hibernate-entitymanager-4.1.7.Final.jar:4.1.7.Final]
... 74 common frames omitted
异常要点是:数据库列responseGroups找不到。
如果我没有在幕后为单个实体类指定该约束,Hibernate将生成两个表:一个表用于所有“简单”实体数据,另一个表用于集
实体数据:
CREATE TABLE `jpaitemsearchrequest` (
`id` BIGINT(20) NOT NULL AUTO_INCREMENT,
`browseNode` VARCHAR(255) NULL DEFAULT NULL,
`itemPage` INT(11) NOT NULL,
`keywords` VARCHAR(255) NULL DEFAULT NULL,
`locale` VARCHAR(255) NULL DEFAULT NULL,
`searchIndex` VARCHAR(255) NULL DEFAULT NULL,
PRIMARY KEY (`id`)
)
COLLATE='utf8_general_ci'
ENGINE=InnoDB
AUTO_INCREMENT=3;
...
CREATE TABLE `jpaitemsearchrequest_responsegroups` (
`JpaItemSearchRequest_id` BIGINT(20) NOT NULL,
`responseGroups` VARCHAR(255) NULL DEFAULT NULL,
INDEX `FKC217757B99AE0422` (`JpaItemSearchRequest_id`),
CONSTRAINT `FKC217757B99AE0422` FOREIGN KEY (`JpaItemSearchRequest_id`) REFERENCES `jpaitemsearchrequest` (`id`)
)
COLLATE='utf8_general_ci'
ENGINE=InnoDB;
这个问题以前读:
JPA:跨集的唯一约束(...另一个表上的唯一约束)
进一步思考我的问题,我确信它可以归结为以下问题:
JPA:如何表达包含@ElementCollection列的唯一约束?
可以通过使用带有element collection的@CollectionTable来定义collection表中列的唯一约束。
@CollectionTable(
uniqueConstraints= @UniqueConstraint(columnNames={"col1","col2"})
)
如前所述,这些是映射元素集合的表列。不可能对多个表中的列具有唯一约束。
问题内容: 当违反唯一约束时,将引发a。但是可能有多种原因抛出异常。我如何才能发现违反了唯一约束? 问题答案: 我如何才能发现违反了唯一约束? 异常是链接在一起的,您必须递归调用以获取提供程序特定的异常(并可能转到),以将其转换为应用程序可以很好地为用户处理的内容。下面将打印异常链: 对于异常处理和“翻译”,您可以执行类似于Spring的操作(请参阅各种类,例如,以获取想法)。 所有这些都不是很好
问题内容: 以下模型是一个事件的简单邀请,从一个用户发送到另一个用户。我想确保邀请在以下三列中是唯一的:to_user,from_user和event。 我尝试使用本专栏,但它不起作用。该约束应在SQLite以及生产中的MySQL上均有效。如何定义此唯一约束? 问题答案: 您需要将约束添加到表,而不是模型。为此,请使用声明式: 如果已经在数据库中创建了表,则需要删除该表并再次运行,或者使用Alem
我在实体类中使用Spring Boot和Hibernate JPA,代码如下:, 其中生成了一个集合表user\u files。但是,默认的列类型是VARCHAR(255),有时用户数据可能比这更长。我的问题是如何定义此表以将BLOB或TEXT用于列?我试图在那里直接插入Lob注释,但没有成功。
问题内容: 我正在JPA中对userid列强制执行唯一性约束检查,这是对user表中的所有记录强制执行的。 我的要求是,特定组织内的用户ID必须唯一,而不是在所有组织中都唯一。 如何执行此类检查? 问题答案: 您可以为唯一约束指定多个字段,请尝试: 通过这样做,您的约束条件将检查userid和Organizationid的组合是否唯一。 最好的祝福,费边
问题内容: 有没有一种方法可以使用JPA指定在不同的列集上应该有多个唯一约束? 我已经看到了特定于hibernate的注释,但是由于我们仍在确定hibernate和数据核之间的关系,因此我试图避免使用特定于供应商的解决方案。 问题答案: 所述的属性实际接受的这些阵列。您的示例只是具有单个元素的数组的简写。否则,它看起来像: 只要唯一性约束仅基于一个字段,就可以在该列上使用。
问题内容: 我正在将SEAM 2 / Hibernate与PostgreSQL 9数据库一起使用。我有下表 我想添加一个约束,以确保每个新条目都具有active_band_user和active_band_date的唯一组合。 每秒可能有许多次尝试插入,因此我需要尽可能地提高效率,是否可以在实体映射中使用SEAM /hibernate注释? 提前致谢 问题答案: 没有Hibernate注释在插入/