SGF-732 - Change branding from Spring Data GemFire to Spring Data for Pivotal GemFire.

Change branding from 'Gemfire' or 'GemFire' to 'Pivotal GemFire'.
This commit is contained in:
John Blum
2018-05-07 23:04:18 -07:00
parent 593b6ad0a0
commit 5babdfd3fb
342 changed files with 1855 additions and 1856 deletions

View File

@@ -1,4 +1,4 @@
description = 'Spring Data GemFire Samples - Hello World'
description = 'Spring Data for Pivotal GemFire Samples - Hello World'
apply plugin: 'base'
apply plugin: 'idea'
@@ -21,7 +21,7 @@ dependencies {
runtime "log4j:log4j:$log4jVersion"
runtime "org.slf4j:slf4j-log4j12:$slf4jVersion"
testCompile "junit:junit:$junitVersion"
testCompile "org.springframework:spring-test:$springVersion"
}
@@ -34,4 +34,4 @@ run {
systemProperties['java.net.preferIPv4Stack'] = 'true'
}
defaultTasks 'run'
defaultTasks 'run'

View File

@@ -20,15 +20,17 @@ import org.springframework.context.support.AbstractApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* Hello World startup class. Bootstraps the Spring container which in turns starts GemFire and the actual application.
* Hello World startup class.
*
* Bootstraps the Spring container which in turns starts Pivotal GemFire and the actual application.
*
* Accepts as optional parameters location of one (or multiple) application contexts that will
* be used for configuring the Spring container. See the reference documentation for more
* {@link http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/resources.html information}.
*
*
* Note that in most (if not all) managed environments writing such a class is not needed
* as Spring already provides the required integration.
*
*
* @see org.springframework.web.context.ContextLoaderListener
* @author Costin Leau
*/

View File

@@ -8,13 +8,13 @@
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd
http://www.springframework.org/schema/gemfire http://www.springframework.org/schema/gemfire/spring-gemfire.xsd">
<!-- GemFire cache bean -->
<!-- Pivotal GemFire cache bean -->
<gfe:cache properties-ref="props" />
<util:properties id="props" location="cache.properties"/>
<!-- GemFire transaction manager -->
<!-- Pivotal GemFire transaction manager -->
<gfe:transaction-manager />
<!-- hello world region -->
<!-- since no name is given, the region will be named after the bean -->
<gfe:replicated-region id="myWorld">
@@ -22,7 +22,7 @@
<bean class="org.springframework.data.gemfire.samples.helloworld.CacheLogger"/>
</gfe:cache-listener>
</gfe:replicated-region>
<bean id="gemfireTemplate" class="org.springframework.data.gemfire.GemfireTemplate" p:region-ref="myWorld"/>
</beans>