-
Notifications
You must be signed in to change notification settings - Fork 190
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Application custom conversions override spring-data-couchbase custom conversions since v5 #1876
Comments
Thanks for the description. I'll look into this. |
This isn't great, but you can copy/override AbstractCouchbaseConfiguration.customConversions(getCryptoManager(), getObjectMapper()) and add your converters to newConverters.
Eventually I can replace the customConversions(CryptoManager, ObjectMapper) method with
|
hey @mikereiche, Can I work on this? If you have not started working on this? |
hey @mikereiche @roman-sinyakov, I've Raised a PR for this. Can you please check this? |
Thanks very much. I'll look at it next week. |
Any Update here? @mikereiche |
We use Couchbase configuration with our own custom conversions declared like below since v4:
Method
AbstractCouchbaseConfiguration.customConversions()
is empty in v4:After upgrade to v5 spring-data-couchbase owned convertors (e.g.
StringToEnumConverterFactory
) stopped working since this methodAbstractCouchbaseConfiguration.customConversions()
started declaring them since v5:I cannot see any way to have our own custom convertors and keep spring-data-couchbase custom convertors at the same time.
spring-data-couchbase 5.1.4
Please help
The text was updated successfully, but these errors were encountered: