Example usage for org.springframework.data.cassandra.core CassandraOperations insert

List of usage examples for org.springframework.data.cassandra.core CassandraOperations insert

Introduction

In this page you can find the example usage for org.springframework.data.cassandra.core CassandraOperations insert.

Prototype

<T> T insert(T entity) throws DataAccessException;

Source Link

Document

Insert the given entity and return the entity if the insert was applied.

Usage

From source file:edu.elka.peakadvisor.model.CassandraDao.java

public void saveLatest(Latest latest) {
    CassandraOperations template = this.cassandraTemplate;
    template.insert(latest);
}