I tried to create a test following the recommandation: https://github.com/hibernate/hibernate-test-case-templates/blob/main/orm/hibernate-orm-6/src/test/java/org/hibernate/bugs/JPAUnitTestCase.java But I didn’t succeed in, because I can’t find how to retrieve a Repository with your test class. This issue is relative to this post : https://discourse.hibernate.org/t/naturalid-hibernate-always-hit-the-db/6628/3 When I try to retrieve my entites through the repository with {{findAllByIdIn(List<Long> ids); }}it throws an Error. I
|