
XML and Json Response Format using Jackson
There will be some scenarios, where you need to send both the XML and JSON output based on the calling client requests. This might become sometimes tricky if we are using...
Search | Technology | Blogging
There will be some scenarios, where you need to send both the XML and JSON output based on the calling client requests. This might become sometimes tricky if we are using...
It's always tough for me to set the values for the POJO classes. If the POJO going to be complex it will kill my whole day. Hence I was googling and...
What is the mean by object mapper? As the name suggests mapping the data from one object to another? Consider the situation where you want to convert the object from one form...
There are scenarios, where we need to add the new attributes often, then the creation of POJO automatically will be helpful to you. You No need to make a lot of...
StAX is a standard XML processing API that allows you to stream XML data from and to your application.This API is better than the DOM parser in the case of Performance....
The Document Object Model (DOM) is an official recommendation of the World Wide Web Consortium (W3C). DOM reads the entire document and will be useful in case of the size of...
Static means the data tied to class, instead of the instance of the object. With ordinary non-static method, you have to create an instance of the class and use it...
Object cloning is nothing but creating the extra copy of the object. The clone( ) method generates a duplicate copy of the object on which it is called. Only classes...
Using Comparable First we can understand what is comparable. A comparable object is capable of comparing itself with another object. Its Interface and when we want to sort any Pojo...
What is Lamda Expression. It is essentially, an anonymous (that is unnamed) method. However this method is not executed on its own. Instead it is used to implement a method...