mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-09 19:13:18 +00:00
21 lines
1005 B
XML
21 lines
1005 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns:cache="http://www.springframework.org/schema/cache"
|
|
xmlns:p="http://www.springframework.org/schema/p"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
|
http://www.springframework.org/schema/beans/spring-beans.xsd
|
|
http://www.springframework.org/schema/cache
|
|
http://www.springframework.org/schema/cache/spring-cache.xsd">
|
|
|
|
<cache:annotation-driven />
|
|
<bean id="cacheManager" class="org.springframework.cache.jcache.JCacheCacheManager">
|
|
<property name="cacheManager">
|
|
<bean class="org.springframework.cache.jcache.JCacheManagerFactoryBean">
|
|
<property name="cacheManagerUri" value="file:${dspace.dir}/config/ehcache.xml"/>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
</beans> |