本文介紹了測(cè)試Hibernate@Check約束時(shí)無(wú)法生成約束沖突異常的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!
問(wèn)題描述
我正在使用Hibernate@Check
批注,但不能讓我的測(cè)試在不滿足約束時(shí)失敗。當(dāng)前僅對(duì)H2數(shù)據(jù)庫(kù)使用默認(rèn)的Spring啟動(dòng)配置。
我錯(cuò)過(guò)了什么?save(..)
之后是否應(yīng)該有某種刷新?
運(yùn)行測(cè)試時(shí),我看到正確創(chuàng)建了表。如果我從日志中復(fù)制創(chuàng)建行,并使用它在我的”真正的”postgres數(shù)據(jù)庫(kù)中創(chuàng)建表,我可以測(cè)試不同的插入,并看到此行完全可以使用約束。
實(shí)體
@Getter @Setter
@Entity @Check(constraints = "a IS NOT NULL OR b IS NOT NULL")
public class Constrained {
@Id @GeneratedValue
private Long id;
private String a, b;
}
測(cè)試
@DataJpaTest
@RunWith(SpringRunner.class)
public class HibernateCheckTest {
@Resource // this repo is just some boiler plate code but attached at
// the bottom of question
private ConstrainedRepository repo;
@Test @Transactional // also tried without @Transactional
public void test() {
Constrained c = new Constrained();
repo.save(c); // Am I wrong to expect some constraint exception here?
}
}
運(yùn)行測(cè)試時(shí)的表格生成腳本
CREATE TABLE約束(id bigint非空,a varchar(255),b
Varchar(255),主鍵(Id),檢查(a不為空或b不為空
空))
存儲(chǔ)庫(kù)(在repo中查看不多,只是為了顯示它):
public interface ConstrainedRepository
extends CrudRepository<Constrained, Long> {
}
但是
如果我使用EntityManager
將其添加到測(cè)試類:
@PersistenceContext
private EntityManager em;
和執(zhí)行如下持久化操作:
em.persist(c);
em.flush();
我將獲得異常,而不是repo.save(c)
。
和
使用repo.save(c)
更仔細(xì)地研究原始測(cè)試的日志顯示:
org.springframework.test.context.transaction.TransactionContext:139-已回滾用于測(cè)試的事務(wù):
…
測(cè)試異常=[空],
因此,出于某種原因,該錯(cuò)誤只是被包裝和記錄。如何在使用倉(cāng)庫(kù)持久化時(shí)進(jìn)行解包和拋出?
推薦答案
感謝codemonkey中的answer我能夠找到解決方案。這可以通過(guò)添加:
來(lái)解決
@org.springframework.transaction.annotation.Transactional(propagation =
Propagation.NOT_SUPPORTED)
到我的測(cè)試類。
這篇關(guān)于測(cè)試Hibernate@Check約束時(shí)無(wú)法生成約束沖突異常的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,