All Projects → aerospike-community → spring-data-aerospike

aerospike-community / spring-data-aerospike

Licence: Apache-2.0 License
Spring Data Aerospike

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to spring-data-aerospike

spring-data-starter
⚡️ A sample Spring Data Cassandra REST API
Stars: ✭ 36 (+9.09%)
Mutual labels:  spring-data
asprom
Aerospike prometheus exporter
Stars: ✭ 38 (+15.15%)
Mutual labels:  aerospike
archelix-rsql
This library brings the convenience of SQL declarative nature to restful APIs in the form of RSQL but without the danger of sql injection by using a typesafe mapping of allowed field paths defined via integration with querydsl library. Like sql, it supports clauses such as select, filter, pagination and sorting that can easily be represented in …
Stars: ✭ 35 (+6.06%)
Mutual labels:  spring-data
spring-boot-jpa-rest-demo-filter-paging-sorting
Spring Boot Data JPA with Filter, Pagination and Sorting
Stars: ✭ 70 (+112.12%)
Mutual labels:  spring-data
hibernate-springcache
Hibernate cache implementation that backs to the Spring Cache abstraction
Stars: ✭ 19 (-42.42%)
Mutual labels:  spring-data
spring-boot-java-swing-reservations
The project aims to present how to connect Spring Boot 2 and Java Swing GUI widget toolkit. All application dependencies are provided by Docker Compose. There are also static code analysis tools like FindBugs and Checkstyle.
Stars: ✭ 86 (+160.61%)
Mutual labels:  spring-data
aerospike-graphite
Aerospike monitoring for Graphite - a community driven open source project
Stars: ✭ 13 (-60.61%)
Mutual labels:  aerospike
movie-db-java-on-azure
Sample movie database app built using Java on Azure
Stars: ✭ 28 (-15.15%)
Mutual labels:  spring-data
lc-spring-data-r2dbc
An extension of spring-data-r2dbc to provide features such as relationships, joins, cascading save/delete, lazy loading, sequence, schema generation, composite id
Stars: ✭ 30 (-9.09%)
Mutual labels:  spring-data
spring-data-ldap
Repository abstraction for Spring LDAP
Stars: ✭ 53 (+60.61%)
Mutual labels:  spring-data
Spring-Boot-2
Spring Boot 2.x examples
Stars: ✭ 33 (+0%)
Mutual labels:  spring-data
spring-data-cosmosdb
Access data with Azure Cosmos DB
Stars: ✭ 94 (+184.85%)
Mutual labels:  spring-data
Spring5Certification
Spring Certification: This repository contains my examples and some best references to prepare the Spring 5 certification
Stars: ✭ 30 (-9.09%)
Mutual labels:  spring-data
Library
Online Library Management. User can search, check in, checkout book. System adds fines automatically if the book is not checked in by due date
Stars: ✭ 27 (-18.18%)
Mutual labels:  spring-data
spring-data-mongodb-encrypt
Lightweight library for simple & easy per-field encryption in mongodb+spring
Stars: ✭ 62 (+87.88%)
Mutual labels:  spring-data
weedow-searchy
Automatically exposes web services over HTTP to search for Entity-related data using a powerful query language
Stars: ✭ 21 (-36.36%)
Mutual labels:  spring-data
spring-data-jdbc-repository
Spring Data JDBC generic DAO implementation in Java (more up-to-date fork)
Stars: ✭ 123 (+272.73%)
Mutual labels:  spring-data
spring-boot-mongodb-example
Spring Boot Using Spring Data MongoDB Example
Stars: ✭ 36 (+9.09%)
Mutual labels:  spring-data
spring-boot-jpa
A Spring Boot microservices reference application using Spring Data JPA
Stars: ✭ 25 (-24.24%)
Mutual labels:  spring-data
TASK-Management-System
Spring Boot and Angular 7 web application for task management .
Stars: ✭ 34 (+3.03%)
Mutual labels:  spring-data

Spring Data Aerospike maven ci javadoc

The primary goal of the Spring Data project is to make it easier to build Spring-powered applications that use new data access technologies such as non-relational databases, map-reduce frameworks, and cloud based data services.

The Spring Data Aerospike project aims to provide a familiar and consistent Spring-based programming model for new data stores while retaining store-specific features and capabilities. The Spring Data Aerospike project provides integration with the Aerospike document database. Key functional areas of Spring Data Aerospike are a POJO centric model for interacting with an Aerospike DBCollection and easily writing a repository style data access layer.

Documentation

The documentation for this project can be found on javadoc.io.

Demo Projects

  1. Demo project with detailed guides is located here.

  2. Demo project example with a step-by-step tutorial can be found here.

Getting Started blog posts

  1. Simple Web Application Using Java, Spring Boot, Aerospike and Docker
  2. How to setup spring-data-aerospike in Spring Boot application
  3. Basic error handling in spring-data-aerospike
  4. How to create secondary index in Spring Data Aerospike
  5. Caching with Spring Boot and Aerospike
  6. Spring Data Aerospike: Reactive Repositories

Spring Data Aerospike compatibility

Spring Data Aerospike Spring Boot Aerospike Client Aerospike Reactor Client Aerospike Server
3.3.x 2.5.x 5.1.x 5.1.x 5.2.x.x +
3.2.x 2.5.x 5.1.x 5.0.x 5.2.x.x +
3.0.x, 3.1.x 2.5.x 5.1.x 5.0.x
2.5.x 2.5.x 4.4.x 4.4.x
2.4.2.RELEASE 2.3.x 4.4.x 4.4.x
2.3.5.RELEASE 2.2.x 4.4.x 4.4.x
2.1.1.RELEASE 2.1.x, 2.0.x 4.4.x 3.2.x
1.2.1.RELEASE 1.5.x 4.1.x

Quick Start

Maven configuration

Add the Maven dependency:

<dependency>
  <groupId>com.aerospike</groupId>
  <artifactId>spring-data-aerospike</artifactId>
  <version>3.3.1</version>
</dependency>

The Aerospike Spring Data connector depends on the Aerospike Client project:

<dependency>
  <groupId>com.aerospike</groupId>
  <artifactId>aerospike-client</artifactId>
</dependency>

Dependency will be provided for you by spring-data-aerospike, so no need to declare it additionally.

AerospikeTemplate

AerospikeTemplate is the central support class for Aerospike database operations. It provides:

  • Basic POJO mapping support to and from Bins
  • Convenience methods to interact with the store (insert object, update objects) and Aerospike specific ones.
  • Connection affinity callback
  • Exception translation into Spring's technology agnostic DAO exception hierarchy.

Spring Data repositories

To simplify the creation of data repositories Spring Data Aerospike provides a generic repository programming model. It will automatically create a repository proxy for you that adds implementations of finder methods you specify on an interface.

For example, given a Person class with first and last name properties, a PersonRepository interface that can query for Person by last name and when the first name matches a like expression is shown below:

public interface PersonRepository extends AerospikeRepository<Person, Long> {

    List<Person> findByLastname(String lastname);

    List<Person> findByFirstnameLike(String firstname);
}

The queries issued on execution will be derived from the method name. Extending AerospikeRepository causes CRUD methods being pulled into the interface so that you can easily save and find single entities and collections of them.

You can have Spring automatically create a proxy for the interface by using the following JavaConfig:

@Configuration
@EnableAerospikeRepositories(basePackageClasses = PersonRepository.class)
class ApplicationConfig extends AbstractAerospikeDataConfiguration {

    @Override
    protected Collection<Host> getHosts() {
        return Collections.singleton(new Host("localhost", 3000));
    }

    @Override
    protected String nameSpace() {
        return "TEST";
    }
}

This sets up a connection to a local Aerospike instance and enables the detection of Spring Data repositories (through @EnableAerospikeRepositories).

This will find the repository interface and register a proxy object in the container. You can use it as shown below:

@Service
public class MyService {

    private final PersonRepository repository;

    @Autowired
    public MyService(PersonRepository repository) {
        this.repository = repository;
    }

    public void doWork() {
        repository.deleteAll();

        Person person = new Person();
        person.setFirstname("Oliver");
        person.setLastname("Gierke");
        repository.save(person);

        List<Person> lastNameResults = repository.findByLastname("Gierke");
        List<Person> firstNameResults = repository.findByFirstnameLike("Oli*");
    }
}

Getting Help

For a comprehensive treatment of all the Spring Data Aerospike features, please refer to:

If you are new to Spring as well as to Spring Data, look for information about Spring projects.

Contributing to Spring Data

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

  • Get involved with the Spring community on Stackoverflow and help out on the spring-data-aerospike tag by responding to questions and joining the debate.
  • Create Github issue 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 Github ticket as well covering the specific issue you are addressing.
  • Watch for upcoming articles by subscribing to Aerospike Standup.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].