ClusterClassMetaInfo metaInfo=annotationAnalyzer.analyze(entityClass);
for (PropertyDescriptor propertyDescriptor : metaInfo.getPersistentProperties() ) {
Method writeMethod=propertyDescriptor.getWriteMethod();
if (writeMethod!=null) {
try {
Serializer valueSerializer=SerializerFactory.getSerializerByClass(propertyDescriptor.getPropertyType());
CassandraColumnInfo colInfo=new CassandraColumnInfo(propertyDescriptor.getName(), valueSerializer,writeMethod);
columns.add(colInfo);
} catch (NoSerializerFoundException e) {
log.error(e.getMessage(),e);