Java memory management In languages like c, c++ memory management is done in explicitly by the developer. A small mistake in manually emptying the allocated memory may lead into memory leak. Then for applications that handle enormous amount of data, may run out of memory and lead to crash. But Java provides a mechanism for […]
Java Memory Management
Posted in Java Development by admin - Dec 24 2017
Enterprise Java Beans
Posted in Java Development by admin - May 09 2015
Introduction to Enterprise Java Beans for Freshers Enterprise Java Beans is a type of architecture for component-based distributed technology. It is arguably the most important aspect of that architecture. Accordingly all other components work alongside with the enterprise beans to make all bean related applications. Enterprise beans are components that are section of a […]
Transient, Volatile Modifiers
Posted in Java Development by admin - Dec 19 2011
Transient Object serialization is one of the important concepts in java programming language. It is the process of saving an object’s state to a persistent storage in the form of bytes, as well as the process of building the same object from those bytes in future. Java Serialization API offers standard methods […]