a try of a spring data foundationdb community project
Add the Maven dependency:
<dependency>
<groupId>de.h2cl.spring.data</groupId>
<artifactId>myspring-data-foundationdb</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
A default implementation of FoundationDbRepository, aligning to the generic Repository Interfaces, is provided. Spring can do the Repository implementation for you depending on method names in the interface definition.
The FoundationDbRepository extends PagingAndSortingRepository
public interface FoundationDbRepository<T, ID extends Serializable> extends PagingAndSortingRepository<T, ID> {
}
- Entity Metadata
- ObjectMapping (Look at Spring Data Commons)
- connect to maven central