I\'m building a MongoDb rest application with spring boot 1.1.5. I have created a repository:
@RepositoryRestResource(collectionResourceRel = \"SourceProduct
After many try, i've found this solution
@PostConstruct public void init(){ GenericConversionService conversionService = (GenericConversionService) DefaultConversionService.getSharedInstance(); conversionService.addConverter(new JPAConverter()); }
Converter and GenericConvert are supported.