This project will show how can we use custom type in spring data cassandra with spring boot
create keyspace "test" with replication = {'class': 'SimpleStrategy', 'replication_factor': '1'};
create type test.address(city text,state text);
CREATE TABLE test.employee(id bigint PRIMARY KEY, name text, age int, salary float,address frozen
);