Serialization in Java

Serialization in java is a mechanism of writing the state of an object into a byte stream. What is Serialization?…

10 years ago

Object Cloning in Java

The object cloning is a way to create exact copy of an object. For this purpose, clone() method of Object…

10 years ago

How to make a java class immutable

Immutable class is a class which once created, it’s contents can not be changed. Immutable objects are the objects whose…

10 years ago

10 Golden Lessons from Steve Jobs

"I think we’re having fun. I think our customers really like our products. And we’re always trying to do better."…

10 years ago

@ModelAttribute Annotation in Spring MVC

@ModelAttribute Annotation refers to a property of the Model object (the M in MVC ;). @ModelAttribute is a Spring-MVC specific annotation used…

10 years ago

XMLHttpRequest Object in Ajax

XMLHttpRequest (XHR) is an API available to web browser scripting languages such as JavaScript. It is used to send HTTP…

11 years ago

Asynchronous vs Synchronous Ajax

Synchronous  Script stops and waits for the server to send back a reply before continuing. There are some situations where…

11 years ago