Reputation: 69
I have a JCache cache and my caching provider is Infinispan. I need to use it as transactional cache. In Infinispan if we configure Transaction Manager, I can get it as cache.getAdvancedCache().getTransactionManager().
Since my cache is JCache, I do not see an option to do this ie; get Transaction Manager from cache. Is there any way to achieve this?
As per infinispan doc, it is fully JSR-107 compliant: https://infinispan.org/docs/stable/user_guide/user_guide.html#jcache_jsr_107
Upvotes: 2
Views: 267