Add application.properties for the Look-Aside Caching example to configure the Spring application name and GemFire/Geode log-level.

Edit Javadoc.
This commit is contained in:
John Blum
2020-05-18 00:32:47 -07:00
parent 2af2443620
commit 050679d7cf
2 changed files with 7 additions and 2 deletions

View File

@@ -20,8 +20,9 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
/**
* {@link SpringBootApplication} to configure and bootstrap the example application using the Look-Aside Caching pattern,
* and specifically Spring's Cache Abstraction with Apache Geode as the caching provider.
* {@link SpringBootApplication} to configure and bootstrap the example application using the
* {@literal Look-Aside Caching pattern}, and specifically Spring's Cache Abstraction along with
* Apache Geode as the caching provider.
*
* @author John Blum
* @see org.springframework.boot.autoconfigure.SpringBootApplication

View File

@@ -0,0 +1,4 @@
# Spring Boot application.properties for the Look-Aside Caching example.
spring.application.name=LookAsideCachingApplication
spring.data.gemfire.cache.log-level=${gemfire.log-level:error}