miltonlm
miltonlm
Please find attached a reproducer: [business.zip](https://github.com/user-attachments/files/16110297/business.zip) call it using postman and you will see that even though you specify all values in the request, in the code some values are...
Hello @phillip-kruger , thanks for your answers. there are online tools to convert Kotlin to Java online, look at what one of those generated:  Kotlin code: ```kotlin class Input...
Hello Phillip, After testing with Java POJOS, this is the POJO I used to perform the test: ```java package com.mundoware.business.finance.collectionPayments; import java.util.*; public class CollectionPaymentsInput { private String name; private...
Please find attached the related project with the bug: [business.zip](https://github.com/user-attachments/files/16136830/business.zip)
@jmartisk or @mskacelik maybe I can help you if you tell me which package or java file I should check? Thanks a lot.
Hi @phillip-kruger after a detailed debugging I have found exactly where the variables become null and it is when converting a json string to the input class type (CollectionPaymentsInput). Please...
Hello all, I have created a basic main method as suggested by @phillip-kruger and these are the results: ```java Jsonb json = JsonBCreator.getJsonB("com.mundoware.business.finance.collectionPayments.CollectionPaymentsInput"); Jsonb json2 = JsonbBuilder.create(); String jsonString =...
I have tested a few configurations, and the default configuration with no luck. I tried converting with Google Gson Library and it works correctly.
I just tested using Jackson Library and it throws an exception: Exception in thread "main" com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "yId" (class com.mundoware.business.finance.collectionPayments.CollectionPaymentsInput), not marked as ignorable (4 known properties: "name", "yid",...
If we add annotations to the fields in the POJO class, Jackson maps ok: ```java public class CollectionPaymentsInput { private String name; private UUID xid; @JsonProperty("zId") private UUID zId; @JsonProperty("yId")...