Merge branch '1.5.x' into 2.0.x
This commit is contained in:
commit
f225945218
|
@ -46,10 +46,13 @@ compliant implementation and the JSR-107 api. You first need to add
|
||||||
* `Hazelcast`: add `com.hazelcast:hazelcast`
|
* `Hazelcast`: add `com.hazelcast:hazelcast`
|
||||||
* `Infinispan`: add `org.infinispan:infinispan-jcache`
|
* `Infinispan`: add `org.infinispan:infinispan-jcache`
|
||||||
|
|
||||||
TIP: Certain cache providers do not create a default cache on-the-fly if it does not
|
TIP: Run sample cache application using JCache and EhCache3 by uncommenting the
|
||||||
exist so you might need to update the sample to create the caches on startup or
|
`spring.cache.jcache.config` property and `$mvn spring-boot:run -Pehcache`.
|
||||||
specify the location to the provider-specific file via the
|
|
||||||
`spring.cache.jcache.config` property.
|
TIP: Refer to the documentation of the JSR-107 implementation you want to use: certain
|
||||||
|
cache providers do not create a default cache on-the-fly if it does not exist so you might
|
||||||
|
need to update the sample to create the caches on startup or specify the location to the
|
||||||
|
provider-specific file via the `spring.cache.jcache.config` property.
|
||||||
|
|
||||||
NOTE: Any other JSR-107 compliant provider is also supported but Spring Boot may not
|
NOTE: Any other JSR-107 compliant provider is also supported but Spring Boot may not
|
||||||
offer a dependency management entry for it. You will have to add it with the version
|
offer a dependency management entry for it. You will have to add it with the version
|
||||||
|
|
|
@ -45,15 +45,6 @@
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
<profiles>
|
<profiles>
|
||||||
<profile>
|
|
||||||
<id>jcache</id>
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>javax.cache</groupId>
|
|
||||||
<artifactId>cache-api</artifactId>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</profile>
|
|
||||||
<profile>
|
<profile>
|
||||||
<id>caffeine</id>
|
<id>caffeine</id>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
|
@ -3,13 +3,13 @@ management.endpoints.web.exposure.include=*
|
||||||
#
|
#
|
||||||
# Infinispan configuration file location.
|
# Infinispan configuration file location.
|
||||||
#
|
#
|
||||||
spring.cache.infinispan.config=infinispan.xml
|
spring.cache.infinispan.config=classpath:infinispan.xml
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# JCache configuration (example with ehcache 3).
|
# JCache configuration (example with ehcache 3).
|
||||||
#
|
#
|
||||||
#spring.cache.jcache.config=ehcache3.xml
|
#spring.cache.jcache.config=classpath:ehcache3.xml
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue