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)
Coverting a Kafka message into java object
I am trying to convert a kafka message which is received as List of string into Json object.
Following is my code snippet:
//Kafka consuming msg
List<String> message = KafkaMessa...
Rumi
Votes: 1
Answers: 1
Can we deal with JSON data directly instead of creating POJO classes while creating Rest Assured framework?
I have seen in many Rest Assured frameworks that we create POJO classes for Serialization & deserialization but let's say we have to automate more than 50-70 APIs thus, creating POJO classes for a...
saurabh
Votes: 0
Answers: 2
How can I change the value of the fields for a generated POJO using Lombok?
I'm using Lombok for POJOs generation, so how can I change the value of the fields?
@Value
@AllArgsConstructor
@NoArgsConstructor(force = true, access = AccessLevel.PRIVATE)
@Builder(toBuilder = true,...

Razvan
Votes: 0
Answers: 4