What is the configurations for enabling `ehcache replication`?
What is the configurations for enabling `ehcache replication`? I have a project that used JPA and Hibernate in DataAccessLayer with OraclDB and WebLogic application server. Also, I provided second-level-cache through ehcache as following configs: second-level-cache ehcache ehcache.xml <ehcache> <diskStore path="java.io.tmpdir"/> <defaultCache> maxEntriesLocalHeap="10000" eternal="false" timeToIdleSeconds="120" timeToLiveSeconds="120" maxEntriesLocalDisk="10000000" diskExpiryThreadIntervalSeconds="120" memoryStoreEvictionPolicy="LRU"/> <persistence strategy="localTempSwap" </defaultCache> </ehcache> persistence.xml <persistence-unit name="datasource1" transaction-type="JTA"> <provider>org.hibernate.ejb.HibernatePersistence</provider> <jta-data-source>my_datasource...