How to use micronaut-data mapper without SQL_Annotations #885
Unanswered
nicolasmingo
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In my code, I would like to avoid coupling between Domain objects and repository implementation.
For example:
and Book class contains column name inside the class.
If I change repository implementation, I have to change Book annotations. This means Book is coupled to one version of repository implementation.
Instead of this, I would like to do something similar:
Is it possible to do that with micronaut data ?
Beta Was this translation helpful? Give feedback.
All reactions