Guest User

Untitled

a guest
Jan 21st, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.50 KB | None | 0 0
  1.     <bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
  2.         <property name="configLocation">
  3.             <value>classpath:/properties/ehcache.xml</value>
  4.         </property>
  5.     </bean>
  6.  
  7.     <bean id="xmlVocabularyCache" class="org.springframework.cache.ehcache.EhCacheFactoryBean">
  8.         <property name="cacheManager">
  9.             <ref local="cacheManager"/>
  10.         </property>
  11.         <property name="cacheName">
  12.             <value>ori-oai-search_[CONTEXT_SEARCH]_xml-vocabulary</value>
  13.         </property>
  14.     </bean>
Add Comment
Please, Sign In to add comment