Java - Medium Articles
An AndroidManifest.xml file must be present in the root directory of every app project’s source set. The manifest file provides crucial information about your app to… Read More
I received the Technical recruiter’s direct call for the role of Senior Java Developer – Backend. After initial discussion over the phone call. They scheduled… Read More
In this article, we will learn about How we can Make a Layout With rounded corners with the help of Drawables. We can create and… Read More
Sometimes when we click on a particular web element it opens a new window. To locate the web elements on the new window webpage, we… Read More
Prerequisite: PriorityQueue, Pair javafx.util.Pair<K,V> class in Java is the combination of two different objects called Key and Value. It basically provides a way to store… Read More
CRUD (Create, Read, Update, Delete) operations are the building block for developers stepping into the software industry. CRUD is mostly simple and straight forward except… Read More
Given an integer N, the task is to generate a perfect binary tree with height N such that each node has a value that is… Read More
Hibernate is a Java framework that implements ORM(Object Relational Mapping) design pattern. It is used to map java objects into a relational database. It internally… Read More
Microservices are more popular nowadays. They can be written in any language. In this article, let us see Spring Boot Microservices. in this article let… Read More
In Spring Framework, Data Transfer Object (DTO) is an object that carries data between processes. When you’re working with a remote interface, each call is… Read More
The concept of resource injection can be used to inject any resource available in the JNDI (Java Naming and Directory Interface) namespace into any container-managed… Read More
Given a binary string as input, we need to write a program to convert the given binary string into its equivalent decimal number. Examples: Input… Read More
DispatcherServlet acts as the Front Controller for Spring-based web applications. So now what is Front Controller? So it is pretty simple. Any request is going… Read More
A socket is an End-Point of 2 sided or two-way communication link between two PCs running on the network. For Example: If there are two… Read More
The XML-DEV mailing group developed a Simple API for XML also called the SAX, which is an event-driven online algorithm for parsing XML documents. SAX… Read More
Prerequisite: Factory Pattern vs Dependency Injection Factory Design Pattern and Dependency Injection Design both are used to define the interface-driven programs in order to create… Read More
Hibernate is an open-source, ORM(Object Relational Mapping) framework that provides CRUD operations in the form of objects. It is a non-invasive framework. It can be… Read More
Spring Annotations are a form of metadata that provides data about a program. Annotations are used to provide supplemental information about a program. It does… Read More
Old is gold! This is what we say whenever we think of something from the old times which still holds good. In the digital era,… Read More
Dependency Injection and Factory Pattern are almost similar in the sense that they both follow the interface-driven programming approach and create the instance of classes.… Read More