How do you usually do mapping between a bunch of d...
# getting-started
g
How do you usually do mapping between a bunch of different classes? Like, I have a DTO class, a Domain class, a DB entity class, and a couple more, they’re all similar, but not exactly the same, and writing every mapper has proven to be painful
r
🙏 1
j
If you want maximum performance then MapStruct or it's young relative kmapper: https://github.com/s0nicyouth/kmapper
🙏 1
g
tks, gonna check it 🙏