Hi all,
I've been thinking about generating Exposed Tables (and maybe entities) from POJO entity classes, I am looking for a way to keep my domain models pure data classes, so don't clutter them with JPA annotations, while preventing having to write and maintain a separate database definition like with Exposed DSL + DAO.
Komapper comes close, but uses KSP and meta classes to map annotations on, inducing the need to maintain these together with the domain models, and preventing IDE level type checking.
What I have in mind is a DSL based configuration per entity
Anyone seeing any (fundemental) obstacles on the road for a solution like this? Or knows a library that does something like this?