Serialization in java is a mechanism of writing the state of an object into a byte stream. What is Serialization?…
The object cloning is a way to create exact copy of an object. For this purpose, clone() method of Object…
Immutable class is a class which once created, it’s contents can not be changed. Immutable objects are the objects whose…
"I think we’re having fun. I think our customers really like our products. And we’re always trying to do better."…
@ModelAttribute Annotation refers to a property of the Model object (the M in MVC ;). @ModelAttribute is a Spring-MVC specific annotation used…
XMLHttpRequest (XHR) is an API available to web browser scripting languages such as JavaScript. It is used to send HTTP…
Synchronous Script stops and waits for the server to send back a reply before continuing. There are some situations where…