|
I had the same with JBoss EAP 6.1
The fault was to enable batching for infinispan cache instances. Instead of using surrounding Transaction from JBossTransactionManager Infinispan used an own BatchingTransactionManager. The result was that uncomitted objects was readable from cache, even after rollback.
Turning off batching for hibernate cache instance solved my issue
|