Java - Medium Articles
In Java, an enumeration, commonly known as Enum, is a special data type that allows us to define a fixed set of named values or… Read More
Spring framework always aspired to simplify enterprise Java development. They offered Spring Boot framework to simplify creating Java-based microservices. Similarly, the Spring Integration framework was… Read More
Struts 2 allows us to design our validation logic, commonly known as custom validation, by implementing the action class’s Validatable Interface. As you might expect,… Read More
In Java, Environment variables are widely used by operating systems to deliver configuration data to applications. Environment variables are key/value pairs with both the key… Read More
Spring Data LDAP is a project that provides a familiar and consistent repository abstraction for Spring LDAP. It builds on top of Spring LDAP’s LdapTemplate… Read More
Diamond Problem is a problem faced during Multiple Inheritance in Java. Let’s see what is Diamond Problem and how to solve this problem. What is… Read More
A String in Java is a sequence of characters that can be used to store and manipulate text data and It is basically an array… 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
Pointer Authentication Codes (PAC) and Return Address Signing (RET) are security features available on certain ARM-based architectures, including AArch64. These features provide protection against control-flow… Read More
There are two categories under which Java technologies or frameworks can be placed: Invasive Technologies / Frameworks Non-Invasive Technologies / Frameworks Invasive Framework Invasive frameworks… Read More
Generics means parameterized types. The idea is to allow type (Integer, String, … etc., and user-defined types) to be a parameter to methods, classes, and… Read More
Spring Initializr is a Web-based tool that generates the Spring Boot project structure. The spelling mistake in initializr is inspired by initializr. Modern IDEs have… Read More
RecyclerView Item animation is one of the modern features that we can add to our Android app, the basic working of this is when any… Read More
Spring Boot is a popular framework for building modern, scalable, and efficient Java applications. One of the key features of Spring Boot is its extensive… Read More
In the context of RESTful web services, HTTP defines several methods for manipulating resources. The most commonly used methods are POST, PUT, and PATCH. POST… Read More
Sometimes as part of programming requirements, we have to insert and retrieve large files like images, video files, audio files, resumes, etc with respect to… Read More
As we know Swipeable Videos are being used in many social media platforms apps Like Youtube Shorts, Instagram Reels, etc. In this article, we are… Read More
GeekMart is a multinational technology company that focuses on the e-commerce business. It has a large number of suppliers who supply huge volumes of products… Read More
The macOS rendering pipeline in Java refers to the process of rendering graphics on the screen of a macOS computer using the Java programming language.… Read More
Exception Handling is a critical aspect of Java programming, and following best practices for exception handling becomes even more important at the industry level where… Read More