Sanjeet Singhtechnologs.hashnode.dev·Oct 19, 2024Java-Based Big Data Processing: A Comprehensive GuideIntroduction Java, a versatile and widely used programming language, has found its place in the realm of big data processing. Its robust ecosystem, abundant libraries, and strong performance make it a compelling choice for handling massive datasets. ...DiscussJavaScript
Sanjeet Singhtechnologs.hashnode.dev·Oct 16, 2024Developing Reactive Microservices with Spring Boot and JavaUnderstanding Reactive Programming Before diving into microservices, let's grasp the concept of reactive programming. In contrast to traditional imperative programming, reactive programming focuses on non-blocking operations, allowing applications to...DiscussJavaScript
Akash Dasakashdas7781.hashnode.dev·Oct 7, 2024Extends vs Implements in Java: A Comprehensive GuideHave you ever thought about the difference between the extends keyword and the implements keyword? Have you noticed where these keywords are used? Now, don’t just say, “In Java, of course!” Just kidding! Obviously, we use these keywords in Java, but ...DiscussJava
Sanjeet Singhtechnologs.hashnode.dev·Oct 7, 2024Simplifying Enterprise Development Using the Java Spring FrameworkIntroduction In the realm of enterprise application development, Java has long been a stalwart choice due to its platform independence, robust ecosystem, and strong community support. However, building complex enterprise applications can be a dauntin...DiscussJava Programming
Sarthak Sharmaamni.hashnode.dev·Oct 6, 2024JAVA: Data TypesPrologue We have been using data types to define data members, but we are yet to fully understand what they are, how they work, and where to use them. Data types A data type defines the kind of value a variable can hold and the operations that can be...Discuss·10 likes·30 readsJavaJava
Akash Dasakashdas7781.hashnode.dev·Oct 6, 2024Understanding Interface vs Abstract Classes in Java and Best Use CasesI hope you guys ever heard about the difference between the abstract classes and the interfaces . This is the key concept of Object oriented programming and mostly used while designing flexible and maintainable applications. Before diving into the di...Discuss·1 likeJava
Dilip PatelforSpring Bootspringbootmastery.hashnode.dev·Oct 6, 2024Spring Boot Learning PathPrerequisites: Java Programming: Basics: Classes, variables, loops, object-oriented programming (OOP), collections, and generics. Advanced: Design patterns, JVM, threads, servlets and JSPs, concurrency, and garbage collection. Build Tools: Maven,...DiscussSpringboot
Mohit Upadhyaymohit5upadhyay.hashnode.dev·Oct 2, 2024Annotations in JavaOn Day 21, the focus is on Annotations in Java. Annotations are a form of metadata that provide data about a program but do not have direct influence on the program's logic. They are widely used to provide additional information for compilers, develo...Discuss·20 likesDecode Java with MohitJava
Dilip PatelforDilip Patel's Java blogjavamastery.hashnode.dev·Oct 3, 2024Java TokensJava tokens are the smallest elements of a Java program that are meaningful to the compiler. They include keywords, identifiers, literals, operators, and separators. During compilation, Java code is broken down into these tokens through a process cal...DiscussJava BasicsJava
Dilip PatelforDilip Patel's Java blogjavamastery.hashnode.dev·Oct 3, 2024Java PackagesJava packages are essential for organizing and managing code in Java projects. They group related classes and interfaces, helping to avoid name conflicts, control access, and create a hierarchical structure for easier code management. Packages also e...DiscussJava BasicsJava