Hi guys. In our project there is a lot of boilerplate code and I am considering migrate to Kotlin. However we have 3 layers of model classes (ATO, actual model, DTO) and therefore we use mappers heavily (with complex composition structure). For now we use
Remap but it is not working too well with Kotlin. I was considering to switch to
MapStruct but it is also not supporting the Kotlin directly. There is a
library to create builders automatically but it is rather simple and not supported anymore. What do you think would be the best solution here? Manual mapping, MapStruct or something else?