Full Stack DeveloperJava 18 Feature — Simple Web ServerSpringboot application comes with Embedded Servers, but with this Java feature, a lightweight server is ready to use for quick tasks. Let’s…Aug 28
Varun RathodHow to resolve “java.lang.IllegalAccessError”After Java 17 upgrade some of you might have face this “java.lang.IllegalAccessError” or “unnamed module cannot access class” error and you…Mar 28Mar 28
TheJuniorDeveloperModel Class vs. Java Records in Android: Which Should You Use?Building robust and maintainable applications for Android development requires effective and clear data representation.Aug 12Aug 12
Vlad DeditaUnderstanding Java Stream API: Collectors.toList() vs Stream::toListHave you ever noticed the subtle differences between Collectors.toList() and Stream::toList? Let’s dive into these distinctions, focusing…Mar 4Mar 4
Full Stack DeveloperJava 18 Feature — Simple Web ServerSpringboot application comes with Embedded Servers, but with this Java feature, a lightweight server is ready to use for quick tasks. Let’s…Aug 28
Varun RathodHow to resolve “java.lang.IllegalAccessError”After Java 17 upgrade some of you might have face this “java.lang.IllegalAccessError” or “unnamed module cannot access class” error and you…Mar 28
TheJuniorDeveloperModel Class vs. Java Records in Android: Which Should You Use?Building robust and maintainable applications for Android development requires effective and clear data representation.Aug 12
Vlad DeditaUnderstanding Java Stream API: Collectors.toList() vs Stream::toListHave you ever noticed the subtle differences between Collectors.toList() and Stream::toList? Let’s dive into these distinctions, focusing…Mar 4
Agam KakkarExploring the Power of Java Records: A Modern Approach to Data ModelingIn the ever-evolving landscape of software development, Java remains a stalwart presence, continuously adapting to meet the demands of…May 7
Srikanth DannarapuRecords in Java 16Records are a new feature introduced in Java 16. Records are a concise way to define simple data classes. They are similar to classes, but…Feb 28, 2023
Sanjana RajanRecords in JavaRecords is a feature which got introduced in Java 14 as a preview . In simple terms, records are carriers for immutable data.Jan 28