Is it possible to register 2 Converters (@ReadConverter annotated class) in Spring Boot/R2dbc so that I can have:
- A service that uses a repository for an object and reads it using 1 converter for example R2dbcEntityTemplate
- Another service that uses the other converter, for example using a ReactiveCrudRepository
Reason is because I encrypt/decrypt a field in the read/write converter that it's not needed by one of the service.. Encryption/Decryption seems to be expensive
Thanks