Skip to content

This project will show how can we use custom type in spring data cassandra with spring boot

Notifications You must be signed in to change notification settings

rahulgangarde/Spring--data-cassandra-user-define-type

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Spring-data-cassandra-user-define-type

This project will show how can we use custom type in spring data cassandra with spring boot

Use below cassandra schema for the above example

create keyspace

create keyspace "test" with replication = {'class': 'SimpleStrategy', 'replication_factor': '1'};

create customtype first

create type test.address(city text,state text);

create table

CREATE TABLE test.employee(id bigint PRIMARY KEY, name text, age int, salary float,address frozen

);

About

This project will show how can we use custom type in spring data cassandra with spring boot

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages