HATEOAS in Spring Boot

When developing RESTful APIs, one important concept that often comes up is HATEOAS (Hypermedia as the Engine of Application State). But what exactly is HATEOAS, and is it mandatory for a REST API? In ...
0 Read More

treeset in java

โ›ถpackage framework; import java.util.TreeSet; public class treeset { public static void main(String[] args) { String name = "amalareegan"; TreeSet hs = new TreeSet(); ...
0 Read More

HashMap in java

Java HashMap Example import java.util.*; public class HashMapExample1{ public static void main(String args[]){ HashMap map=new HashMap();//Creating HashMap. map.put(1,"Mango"); //Put elements in Ma...
0 Read More

My IDE Journey

Over the years, I have used many text editors and IDEs. Each one was different, had unique features, but ultimately did the job it was meant to do. This article is about my experience with IDEs and te...
0 Read More

Clases anidadas en Java

En Java podemos definir una clase dentro de otra clase, a este tipo de clases se les denomina clases anidadas o nested classes. Las clases anidadas se utilizan para agrupar clases que tienen una relac...
0 Read More