Type something to search...

Java

Java Features

Java Features

It is very difficult to remember, which feature was released in which Java version due to 6 months release cycle. This page tracks the Java versions 8 and later and features released in respective ver

read more
Java Finalizer and Cleaner

Java Finalizer and Cleaner

This essay articulates the history of finalization, its cons that lead to its deprecation. Its alternatives - try-with-resource and Cleaner APIs. History Method finalize() Method `Object.finali

read more
Java Recipes - Part 1

Java Recipes - Part 1

You can store large JSON/String objects in RDBMS with blob. Oracle DB recommends blob for storing JSON objects. In this article, we'll learn it how to handle it using JPA. Using iterator index in

read more
Handling of blob in JPA and JDBC

Handling of blob in JPA and JDBC

You can store large JSON/String objects in RDBMS with blob. Oracle DB recommends blob for storing JSON objects. In this article, we'll learn it how to handle it using JPA. Hibernate supports blob t

read more