solrj - Serializing enum fields spring data solr -


i have field in domain object

@field @enumerated(enumtype.string) private sectiontype sectiontype; 

but when check value stored in solr like:

com.x.y.objects.sectiontype:h_hpi 

what want h_hpi or if i'm calling specialty.name() method want serializer enum fields in domain objects.

i know neo4j, instance, has such serializer , can supplied field annotation. mongodb conversion automatically.


Comments