[
https://issues.jboss.org/browse/ISPN-9443?page=com.atlassian.jira.plugin....
]
Diego Lovison commented on ISPN-9443:
-------------------------------------
If this is the case, then we have a different issue.
The following example is working:
AtomicLong p1Id = new AtomicLong(0L);
doWork(factory, (session) -> {
Person p1 = new Person("p-name", "p-code",
Arrays.asList(new Phone("pp-1"), new Phone("pp-2")));
session.persist(p1);
p1Id.set(p1.getId());
});
doWork(factory, (session) -> {
session.find(Person.class, p1Id.get()).getPhones().add(new
Phone("pp-3"));
});
doWork(factory, (session) -> {
Assert.assertEquals(3, session.find(Person.class,
p1Id.get()).getPhones().size());
});
Fail when single region is accessed with multiple strategies
------------------------------------------------------------
Key: ISPN-9443
URL:
https://issues.jboss.org/browse/ISPN-9443
Project: Infinispan
Issue Type: Enhancement
Components: Hibernate Cache
Affects Versions: 9.3.1.Final
Reporter: Radim Vansa
Fix For: 9.4.0.Final
When we have two entities that share the same region but use different access strategies
the Hibernate boot should fail. Right now there's an assertion in
{{DomainDataRegionImpl.prepareFor*}} but this does not give much explanation and does not
fail when assertions are disabled which leads to cryptic errors later on.
Example:
{code}
@Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE, region = "item")
public static class NonStrictReadWriteVersionedCacheableItem { ... }
@Cache(usage = CacheConcurrencyStrategy.READ_WRITE, region = "item")
public static class ReadWriteVersionedCacheableItem { ... }
{code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)