Create base Spring Geode Sample Example application on Async Inline Caching.

This commit is contained in:
John Blum
2020-12-01 16:58:30 -08:00
parent be01322025
commit ad77707d6f
15 changed files with 1038 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
# Spring Boot application.properties configuration for the golf client application
spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration

View File

@@ -0,0 +1,5 @@
# Spring Boot application.properties configuration for the golfer server application.
# RBMS (Database) configuration properties.
spring.jpa.show-sql=true
spring.jpa.hibernate.ddl-auto=none

View File

@@ -0,0 +1,5 @@
CREATE TABLE IF NOT EXISTS golfers (
name VARCHAR(256) PRIMARY KEY,
hole NUMERIC(10),
score NUMERIC(10)
);