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.0
Show newest version
/*
 * Copyright 2013-2019 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 org.springframework.data.cassandra.core.mapping.MapId;
import org.springframework.data.cassandra.core.mapping.Table;
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 MapIdCassandraRepository}.
  • *
* 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 MapIdCassandraRepository}
  • *
      *
    • 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 MapIdCassandraRepository}, 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, Object)} to easily construct an * id.
    • *
    *
* * @author Alex Shvid * @author Matthew T. Adams * @author Mark Paluch * @deprecated since 2.0, use {@link CassandraRepository}. */ @NoRepositoryBean @Deprecated public interface TypedIdCassandraRepository extends CassandraRepository {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy