[Logo] Terracotta Discussion Forums (LEGACY READ-ONLY ARCHIVE)
  [Search] Search   [Recent Topics] Recent Topics   [Members]  Member Listing   [Groups] Back to home page 
[Register] Register / 
[Login] Login 
[Expert]
Spring + ehcache + bigmemory go integration  XML
Forum Index -> Terracotta for Spring
Author Message
godwin07

neo

Joined: 07/20/2013 08:36:23
Messages: 1
Offline

I am integrating spring3.2 + ehcache + bigmemory go.

Firstly, i do not undertand what is the term "Save the BigMemory Go license-key file to the BigMemory Go home directory." What would be my BigMemory Go home directory in my java web application deployed on glassfish.

Request Help.

Secondly, i get this error:
nested exception is net.sf.ehcache.CacheException: Cannot instantiate enterprise features manager

Following is are my files;
Code:
 <bean id="ehcacheManager" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">       <property name="configLocation" value="/WEB-INF/ehcache.xml" />    
          <property name="shared" value="true" />    
          
 </bean>
 


Code:
 <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd"
  name="myBigMemoryGoConfig">
     <!-- Tell BigMemory where to write its data to disk. -->
   <diskStore path="C:/bigmemorygo"/>
     <cache name="CACHE_GEN" maxBytesLocalHeap="124M" maxBytesLocalOffHeap="1G">
         <persistence strategy="localRestartable"/>
     </cache>  
     <cache name="CACHE_CMP" maxBytesLocalHeap="124M" maxBytesLocalOffHeap="1G">
         <persistence strategy="localRestartable"/>
     </cache>  
 
 </ehcache>
 


Help appreciated.

Thanks,
Godwin
 
Forum Index -> Terracotta for Spring
Go to:   
Powered by JForum 2.1.7 © JForum Team