Closed
Description
Could the CouchbaseAutoConfiguration use existing Jackson ObjectMapper bean instance by default?
Maybe add something like this to the CouchbaseAutoConfiguration class?
@Bean
@ConditionalOnBean(ObjectMapper.class)
public ClusterEnvironmentBuilderCustomizer cluster(ObjectMapper objectMapper) {
return builder -> builder.jsonSerializer(JacksonJsonSerializer.create(objectMapper));
}