Hi,
what does this mean: No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
a) IF you are using JTA: don't use read-write or tx cache without telling me about the tx manager
b) you ARE using JTA, don't use read write cache
I am putting @Cache(usage=CacheConcurrencyStrategy.READ_WRITE) on top of some entities here, and everything seems ok. That line has me a bit paranoid and I'm not sure how to interepret it.
As far as I know springs HibernateTransactionManager (which I'm using) has nothing to do with JTA.
Do I have something misconfigured or am I ok with this? Also ehcache does not support CacheConcurrencyStrategy.TRANSACTIONAL correct?
|