Giter Club home page Giter Club logo

sdeleuze / spring-data-cassandra Goto Github PK

View Code? Open in Web Editor NEW

This project forked from spring-projects/spring-data-cassandra

0.0 2.0 0.0 10.15 MB

Provides support to increase developer productivity in Java when using Apache Cassandra. Uses familiar Spring concepts such as a template classes for core API usage and lightweight repository style data access.

Home Page: http://projects.spring.io/spring-data-cassandra/

Shell 0.06% Java 95.84% Kotlin 4.10%

spring-data-cassandra's Introduction

Spring Data for Apache Cassandra Spring Data for Apache Cassandra

Spring Data for Apache Cassandra

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 for Apache Cassandra project aims to provide a familiar and consistent Spring-based programming model for new datastores while retaining store-specific features and capabilities. The Spring Data for Apache Cassandra project provides integration with the Apache Cassandra database. Key functional areas of Spring Data for Apache Cassandra are a CQL abstraction, a POJO centric model for interacting with an Apache Cassandra tables and easily writing a repository style data access layer.

Getting Help

For a comprehensive treatment of all the Spring Data for Apache Cassandra features, please refer to:

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

Quick Start

Prerequisites:

Maven configuration

Add the Maven dependency:

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

If you would rather like the latest snapshots of the upcoming major version, use our Maven snapshot repository and declare the appropriate dependency version.

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

<repository>
  <id>spring-libs-snapshot</id>
  <name>Spring Snapshot Repository</name>
  <url>https://repo.spring.io/libs-snapshot</url>
</repository>

CassandraTemplate

CassandraTemplate is the central support class for Cassandra database operations. It provides:

  • Increased productivity by handling common Cassandra operations properly. Includes integrated object mapping between CQL Tables and POJOs.
  • Exception translation into Spring's technology agnostic DAO exception hierarchy.
  • Feature rich object mapping integrated with Spring’s Conversion Service.
  • Annotation-based mapping metadata but extensible to support other metadata formats.

Spring Data repositories

To simplify the creation of data repositories Spring Data for Apache Cassandra 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 CrudRepository<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 CrudRepository 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
@EnableCassandraRepositories
class ApplicationConfig extends AbstractCassandraConfiguration {

  @Override
  public String getContactPoints() {
    return "localhost";
  }

  @Override
  protected String getKeyspaceName() {
    return "springdata";
  }
}

This sets up a connection to a local Apache Cassandra instance and enables the detection of Spring Data repositories (through @EnableCassandraRepositories). The same configuration would look like this in XML:

<cassandra:cluster contact-points="localhost" port="9042" />

<cassandra:session keyspace-name="springdata" />

<cassandra:template id="cassandraTemplate" />

<cassandra:repositories base-package="com.acme.repository" />

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");
     person = repository.save(person);

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

What's included

Spring Data for Apache Cassandra consists of two modules:

  • Spring CQL
  • Spring Data for Apache Cassandra

You can choose among several approaches to form the basis for your Cassandra database access. Spring’s support for Apache Cassandra comes in different flavors. Once you start using one of these approaches, you can still mix and match to include a feature from a different approach.

Spring CQL

Spring CQL takes care of all the low-level details that can make Cassandra and CQL such a tedious API to develop with.

CqlTemplate is the classic Spring CQL approach and the most popular. This "lowest level" approach and all others use a CqlTemplate under the covers including schema generation support.

Spring Data Cassandra

Spring Data for Apache Cassandra adds object mapping, schema generation and repository support to the feature set.

CassandraTemplate wraps a CqlTemplate to provide result to object mapping and the use of SELECT, INSERT, UPDATE and DELETE methods instead of writing CQL statements. This approach provides better documentation and ease of use. Schema generation support supports fast bootstrapping by using mapped objects to create tables and user types.

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-cassandra tag 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 spring.io.

Before we accept a non-trivial patch or pull request we will need you to sign the Contributor License 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. If you forget to do so, you'll be reminded when you submit a pull request. Active contributors might be asked to join the core team, and given the ability to merge pull requests.

Initial Contributors

Spring Data for Apache Cassandra was initially created and supported by the following companies and individuals:

spring-data-cassandra's People

Contributors

aholmberg avatar alexshvid avatar andricdu avatar atoulme avatar buzzardo avatar chbatey avatar christophstrobl avatar codesmell avatar ezbz avatar fabiojmendes avatar flyhighplato avatar gregturn avatar hleb-albau avatar isopov avatar john-mcpeek avatar lukasz-antoniak avatar mateuszstefek avatar mateuszy avatar matthewadams avatar mp911de avatar odrotbohm avatar olegdokuka avatar petercable avatar pgraff avatar prowave avatar schauder avatar sksumit1 avatar spring-builds avatar stefanbirkner avatar wilkinsona avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.