MSManikandan Sinmanikandan4411.hashnode.dev·4d ago · 5 min readWrapper Classes and Java Annotations in JavaIntroduction Java provides Wrapper Classes to represent primitive data types as objects. Java also provides Annotations to add metadata to classes, methods, variables, and other program elements. In t00
MSManikandan Sinmanikandan4411.hashnode.dev·4d ago · 3 min readJava Regex Concepts in JavaIntroduction Regex (Regular Expression) is a sequence of characters used to search, match, validate, or manipulate text based on a specific pattern. Java provides the Pattern and Matcher classes in th00
HRHritik ranjaninblogs.hritikranjan.in·Sep 1 · 34 min read🐳 Dockerizing a Three-Tier Java Spring Boot Application with Docker Compose & MySQLIn this project, I deployed a three-tier Java Spring Boot application using Docker and Docker Compose. The application contains: ☕ Java Spring Boot backend 🗄️ MySQL database 🐳 Docker containers 00
MSManikandan Sinmanikandan4411.hashnode.dev·Aug 28 · 4 min readGenerics Concepts in JavaIntroduction Generics in Java allow us to write classes, interfaces, and methods that can work with different data types while providing type safety. Generics are commonly used with the Java Collectio00
MSManikandan Sinmanikandan4411.hashnode.dev·Aug 25 · 4 min readI/O Stream Concepts in JavaIntroduction I/O (Input/Output) Streams in Java are used to read data from a source and write data to a destination. Java provides I/O classes mainly through the java.io package. There are two main ty00
MSManikandan Sinmanikandan4411.hashnode.dev·Aug 21 · 4 min readFile Handling Concepts in JavaIntroduction File Handling in Java is used to create, read, write, update, and delete files. Java provides classes mainly through the java.io and java.nio.file packages for working with files. 1. Fil00
MSManikandan Sinmanikandan4411.hashnode.dev·Aug 19 · 11 min readError and Exception Handling in JavaIntroduction While developing Java applications, errors and unexpected situations can occur during program execution. For example: Dividing a number by zero Accessing an invalid array index Reading00
KMKaustubh Mishrainkmscratch.hashnode.dev·Aug 9 · 10 min readHOW JAVA STORES NEGATIVE NUMBERS AND THE LIE OF 0.7Hello! all, a warm welcome to my scratchPad. If you are new to this series and wanna know more about it, as well as my resources and motivation behind it, you can read it up here in the Series Introdu00
AAAditya Agrawalinadityagrawal45.hashnode.dev·Aug 8 · 12 min readMyth: Redis Is Only a CacheMyth: Redis Is Only a Cache I used to describe Redis in interviews as "an in-memory cache, usually for sessions or hot database rows." That's the answer most people give, and honestly it's not wrong, 00
MSManikandan Sinmanikandan4411.hashnode.dev·Jul 20 · 6 min readArrays in JavaIntroduction When working with Java, you often need to store multiple values of the same data type. Instead of creating separate variables for each value, Java provides Arrays, which allow you to stor00