PinnedBoost Your Java Back-End Performance: Essential Optimization Tips!Performance plays a critical role in the success of a software project. Optimizations applied during Java back-end development ensure…Nov 7, 2024Nov 7, 2024
PinnedNull Safety: Avoid Null Pointer Exception in JavaIf you want to learn more about null checks, you can also read my previous post on Simplify Null Checks in Java: Writing Clean Code with…Oct 17, 2024Oct 17, 2024
PinnedHow to parse and generate an Excel file in Spring Boot: What is Apache POI?Keeping files directly in the database would be quite difficult. Therefore, it is better to read the data from the excel file and keep it inSep 30, 20241Sep 30, 20241
PinnedDon’t use if-else blocks anymore! Use Strategy and Factory Pattern TogetherAs we move forward in a project, lost in if-else blocks, struggling with complex conditions and repetitive code, we look for a solution…Sep 22, 2024Sep 22, 2024
Simple and Clean Queries: Using Criteria API in JavaTo perform database operations with Java, we can perform these operations using native query or JPQL, which is the old method. However…Dec 19, 2024Dec 19, 2024
As a 20-year Windows user, why did I switch to Linux?When I bought my first computer, it came with Windows XP installed. I didn’t have an internet connection yet. I still remember those days…Nov 30, 2024Nov 30, 2024
Java’da Null Kontrollerini Basitleştirin: Apache Commons Lang 3 ile Temiz KodJava’da null kontrolleri genel olarak == veya != kullanılarak yapılır. Bunun yanında bir de empty kontrolü yapmak istersek koşulumuz…Sep 17, 2024Sep 17, 2024
Simplify Null Checks in Java: Writing Clean Code with Apache Commons Lang 3In Java, null checks are generally done using == or !=. In addition, if we want to do an empty check, our condition will look like the…Sep 16, 20247Sep 16, 20247