All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.data.cassandra.repository.TypedIdCassandraRepository Maven / Gradle / Ivy

There is a newer version: 4.3.4
Show newest version
/*
 * Copyright 2013-2014 the original author or authors
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.springframework.data.cassandra.repository;

import java.io.Serializable;

import org.springframework.data.cassandra.mapping.PrimaryKey;
import org.springframework.data.cassandra.mapping.PrimaryKeyClass;
import org.springframework.data.cassandra.mapping.PrimaryKeyColumn;
import org.springframework.data.cassandra.mapping.Table;
import org.springframework.data.cassandra.repository.support.BasicMapId;
import org.springframework.data.domain.Persistable;
import org.springframework.data.repository.CrudRepository;
import org.springframework.data.repository.NoRepositoryBean;

/**
 * Cassandra-specific extension of the {@link CrudRepository} interface that allows the specification of a type for the
 * identity of the {@link Table @Table} (or {@link Persistable @Persistable}) type.
 * 

* If a single column comprises the identity of the entity, then you must do one of two things: *

    *
  • annotate the field or property in your entity with {@link PrimaryKey @PrimaryKey} and declare your repository * interface to be a subinterface of this interface, specifying the entity type and id type, or
  • *
  • annotate the field or property in your entity with {@link PrimaryKeyColumn @PrimaryKeyColumn} and declare your * repository interface to be a subinterface of {@link CassandraRepository}.
  • *
* If multiple columns comprise the identity of the entity, then you must employ one of the following two strategies. *
    *
  • Strategy: use an explicit primary key class *
      *
    • Define a primary key class (annotated with {@link PrimaryKeyClass @PrimaryKeyClass}) that represents your * entity's identity.
    • *
    • Define your entity to include a field or property of the type of your primary key class, and annotate that field * with {@link PrimaryKey @PrimaryKey}.
    • *
    • Define your repository interface to be a subinterface of this interface, including your entity type and * your primary key class type.
    • *
    *
  • * Strategy: embed identity fields or properties directly in your entity and use {@link CassandraRepository}
  • *
      *
    • Define your entity, including a field or property for each column, including those for partition and (optional) * cluster columns.
    • *
    • Annotate each partition & cluster field or property with {@link PrimaryKeyColumn @PrimaryKeyColumn}
    • *
    • Define your repository interface to be a subinterface of {@link CassandraRepository}, which uses a provided id * type, {@link MapId} (implemented by {@link BasicMapId}).
    • *
    • Whenever you need a {@link MapId}, you can use the static factory method {@link BasicMapId#id()} (which is * convenient if you import statically) and the builder method {@link MapId#with(String, Serializable)} to easily * construct an id.
    • *
    *
* * @author Alex Shvid * @author Matthew T. Adams */ @NoRepositoryBean public interface TypedIdCassandraRepository extends CrudRepository {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy