Create base Spring Geode Sample Example application on Async Inline Caching.
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
# Spring Boot application.properties configuration for the golf client application
|
||||
|
||||
spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration
|
||||
@@ -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
|
||||
@@ -0,0 +1,5 @@
|
||||
CREATE TABLE IF NOT EXISTS golfers (
|
||||
name VARCHAR(256) PRIMARY KEY,
|
||||
hole NUMERIC(10),
|
||||
score NUMERIC(10)
|
||||
);
|
||||
Reference in New Issue
Block a user