Files
spring-boot/spring-boot-samples/spring-boot-sample-cache/src/main/resources/ehcache3.xml
Stephane Nicoll 0cfcbeb40e Add dependency management for Ehcache 3
Closes gh-5725
2016-04-19 13:58:24 +02:00

12 lines
337 B
XML

<config xmlns='http://www.ehcache.org/v3'
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xsi:schemaLocation="http://www.ehcache.org/v3 http://www.ehcache.org/schema/ehcache-core-3.0.xsd">
<cache alias="countries">
<expiry>
<ttl unit="seconds">600</ttl>
</expiry>
<heap unit="entries">200</heap>
</cache>
</config>