David Turanski ed30fdb87f merge pull request #13 from dturanski/1.2.0.RC1
* 1.2.0.RC1:
  doc update:temporarily removed link to spring data chapter in index.xml and fixed a typo in mapping.xml
  updating docs
  clean up build
  update schema task
  update sample build
  fix docs
  merged first draft build
  Refactored region factories
  added membership attributes support
  added dynamic region and jndi binding support
  Updated copyright, fixed support for transaction handlers, added initializers
  Complete disk store refactoring and added region attributes
  Refactored to use DiskStoreFactory
  Added missing cache attributes
  modified schema to make name attribute optional for root regions and required for subregions
  added subregion support
  demonstrate problem trying to create subregions
2012-07-10 08:17:33 -04:00
2012-07-04 12:40:07 -04:00
2012-07-04 12:41:04 -04:00
2012-07-04 11:39:27 -04:00
2012-01-19 10:08:13 +00:00
2010-06-29 20:58:20 +03:00
2012-07-04 13:28:01 -04:00
2012-07-04 11:39:27 -04:00
2012-07-04 12:40:07 -04:00
2012-07-04 12:40:07 -04:00
2012-07-04 13:54:26 -04:00
2012-07-04 11:52:04 +03:00
2012-07-04 12:40:07 -04:00
2012-07-04 13:28:01 -04:00

Spring Data GemFire

The primary goal of the Spring GemFire project is to make it easier to build highly scalable Spring-powered applications using GemFire as a distributed data management platform.

Examples

For examples on using the Spring GemFire, see the samples project.

Getting Help

Read the main project website and the User Guide. Look at the source code and the JavaDocs. For more detailed questions, use the forum. If you are new to Spring as well as to Spring GemFire, look for information about Spring projects.

Quick Start

For those in a hurry:

  • Download the jar through

  • Maven:

<dependency>
  <groupId>org.springframework.data</groupId>
  <artifactId>spring-data-gemfire</artifactId>
  <version>${version}</version>
</dependency> 

<!-- used for nightly builds -->
<repository>
  <id>spring-maven-snapshot</id>
  <snapshots><enabled>true</enabled></snapshots>
  <name>Springframework Maven SNAPSHOT Repository</name>
  <url>http://maven.springframework.org/snapshot</url>
</repository> 

<!-- used for milestone/rc releases -->
<repository>
  <id>spring-maven-milestone</id>
  <name>Springframework Maven Milestone Repository</name>
  <url>http://maven.springframework.org/milestone</url>
</repository> 
  • Gradle:
repositories {
   mavenRepo name: "spring-snapshot", urls: "http://maven.springframework.org/snapshot"
   mavenRepo name: "spring-milestone", urls: "http://maven.springframework.org/milestone"
}

dependencies {
   compile "org.springframework.data:spring-data-gemfire:${version}"
}

Latest GA release is 1.1.2.RELEASE
Latest milestone release is 1.2.0.M1
Latest nightly build is 1.2.0.BUILD-SNAPSHOT

  • Configure a GemFire cache and Region (replicated, partitioned, client and so on):
<beans xmlns="http://www.springframework.org/schema/beans"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:gfe="http://www.springframework.org/schema/gemfire"
  xsi:schemaLocation="
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/gemfire http://www.springframework.org/schema/gemfire/spring-gemfire.xsd">

  <gfe:cache />
  
  <gfe:partitioned-region id="partition" copies="2" total-buckets="4">

  <bean id="gemfireTemplate" class="org.springframework.data.gemfire.GemfireTemplate" p:region-ref="someRegion"/>
</beans>
  • Use the Region to read/write data:
region.put(Long.valueOf(1), new Person("Jane", "Smith"));
  • Or/And GemFireTemplate to interact with GemFire:
template.query("person = 1");

Building

Spring GemFire uses Gradle as its building system. To compile the project, simply type from the root folder

gradlew

To generate IDE-specific files, use

gradlew eclipse

or

gradlew idea 

depending on your editor.

Contributing

Here are some ways for you to get involved in the community:

  • Get involved with the Spring community on the Spring Community Forums. Please help out on the forum by responding to questions and joining the debate.
  • Create JIRA tickets for bugs and new features and comment and vote on the ones that you are interested in.
  • Github is for social coding: if you want to write code, we encourage contributions through pull requests from forks of this repository. If you want to contribute code this way, please reference a JIRA ticket as well covering the specific issue you are addressing.
  • Watch for upcoming articles on Spring by subscribing to springframework.org

Before we accept a non-trivial patch or pull request we will need you to sign the contributor's agreement. Signing the contributor's agreement does not grant anyone commit rights to the main repository, but it does mean that we can accept your contributions, and you will get an author credit if we do. Active contributors might be asked to join the core team, and given the ability to merge pull requests.

Description
No description provided
Readme 16 MiB
Languages
Java 100%