Re-organize all client/server sample code to separate client and server classes into client and server packages, respectively.

Rename sample.ServerConfig class to sample.server.GemFireServer and apply the GemFireServer Gradle Plugin.

Change all 'spring.session.data.gemfire.*' and 'spring.session.data.geode.*' properties to use the SDG property prefixed with 'spring.data.gemfire.*'.
This commit is contained in:
John Blum
2018-08-22 08:32:08 -07:00
parent 61048a3e04
commit d856bce248
19 changed files with 36 additions and 158 deletions

View File

@@ -23,7 +23,7 @@ class GemFireServerPlugin implements Plugin<Project> {
project.gretty {
jvmArgs = [
"-Dspring.data.gemfire.cache.server.port=${project.tasks.gemfireServer.port}",
"-Dspring.data.gemfire.pool.servers=localhost[${project.tasks.gemfireServer.port}]",
"-Dspring.data.gemfire.pool.servers=localhost[${project.tasks.gemfireServer.port}]"
]
}
}