Hello,
I try to force hilla to convert my Java long in Typescript string.
For the moment I can change how Hilla convert my long in JSON using Jackson2ObjectMapperBuilderCustomizer. If I inspect request, I can see that hilla send my long in json string but in the Corresponding Typescript file generated, it remain a “number”.
As long as I don’t manipulate these numbers, it is not a problem because at runtime, it is a JS string. But if i want do something like an addition, the Typescript compilator won’t warn me.
The conversion of Java long to Typescript number can be dangerous with large number. I prefere that the default behabior is a long to string conversion and the client will be able to choose if he want keep string or convert in number (and how he do the conversion).