Generate JSON schema from Java class
This tutorial shows you how to generate JSON schema from Java class. We will use an open source library called JJSchema to do the job. To be able to generate the JSON schema properly, the Java class...
View ArticleJava Multithreading
This article gives an overview of Java multithreading. It talks of the advantages of multithreading, thread states, priorities and options to create threads in Java. Java supports development of...
View ArticleCut the Sticks
Cut the Sticks is a programming problem and an interview question. The problem statement and the solution are given below. Problem Statement You are given N sticks, where the length of each stick is a...
View ArticleReversing a decimal number
Reversing a decimal number is a favourite programming problem in the technical interviews. Below is the problem statement and the solution implemented in Java. Problem statement Write an optimal...
View ArticleJooQ – The simplest ORM library in Java
jOOQ – Java Object Oriented Querying, is yet another Object Relation Mapping (ORM) library in java. Why does it really need a mention, when there exists other ORMs (like Hibernate, JPA) for over many...
View Article