python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Mapping the same Json key in different variables in the same object
I'm doing some changes in a microservice which has an object like the following:
@ToString
@Getter
@Setter
@Builder
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonDeserialize(builder = UsageRate.Usag...
Allanh
Votes: 0
Answers: 2
How to read a xml having list of elements not enclosed in parent tag
How to read a xml having list of elements which are not enclosed in parent tag example of Xml file is as below. In this example it is a list of students which is not enclosed in any of the parent tags...
Kartik
Votes: 0
Answers: 1
Jackson deserialize json array to method parameters
Input json: ["Test", 0, {name:"Henry", age:12}]
Types in the array are random, I want to map it to parameters of a method
I can get parameter types by using method.getParameterType...
SonMooSans
Votes: 0
Answers: 0
@NotEmpty and @notNull not working during deserialization
I have a piece of code which deserialize json string to model object,However I have provided @NotNull and @NotEmpty Validation but its not working, Below is the code:-
private Student getDecryptedR...
Developer and Thinker
Votes: 0
Answers: 2