#javadev search results

🚀 Spring Boot tip: With Spring Boot and Spring Security you can secure endpoints easily. #SpringBoot #JavaDev

mario_casari's tweet image. 🚀 Spring Boot tip: With Spring Boot and Spring Security you can secure endpoints easily.
#SpringBoot #JavaDev

💡Java tip: Use HashMap as Map implementation when you need greatest general-purpose performance. #Java #JavaDev

mario_casari's tweet image. 💡Java tip: Use HashMap as Map implementation when you need greatest general-purpose performance.
#Java  #JavaDev

💡 Spring Boot: To better handle circular dependencies, use constructor injection instead of field injection. ✅ Forces all required dependencies to be provided at creation time, allowing early detection. #SpringBoot #JavaDev

mario_casari's tweet image. 💡 Spring Boot: To better handle circular dependencies, use constructor injection instead of field injection.

✅ Forces all required dependencies to be provided at creation time, allowing early detection.
#SpringBoot #JavaDev

💡 Spring Boot tip: Use spring-boot-starter-logging (Logback) for logging, it is already included as default. ✅ spring-boot-starter-logging is already included in most starters (spring-boot-starter-web, spring-boot-starter-data-jpa, etc.) #SpringBoot #JavaDev

mario_casari's tweet image. 💡 Spring Boot tip: Use spring-boot-starter-logging (Logback) for logging, it is already included as default.

✅ spring-boot-starter-logging is already included in most starters (spring-boot-starter-web, spring-boot-starter-data-jpa, etc.)
#SpringBoot #JavaDev

💡 Spring Boot: You can run jobs at fixed intervals without setting up Quartz or external schedulers. #SpringBoot #JavaDev

mario_casari's tweet image. 💡 Spring Boot: You can run jobs at fixed intervals without setting up Quartz or external schedulers.
#SpringBoot #JavaDev

💡 Java tip: Use StringBuilder instead of String for concatenating strings in loops. ❌ String is immutable, making it inefficient in loops, especially large ones. ✅ StringBuilder is mutable and optimized for repeated string appends. #Java #JavaDev

mario_casari's tweet image. 💡 Java tip: Use StringBuilder instead of String for concatenating strings in loops.

❌ String is immutable, making it inefficient in loops, especially large ones.

✅ StringBuilder is mutable and optimized for repeated string appends.
#Java #JavaDev

💡Spring Boot tip: Use @Profile to group and load beans/configurations in specific environments. #SpringBoot #JavaDev

mario_casari's tweet image. 💡Spring Boot tip: Use @Profile to group and load beans/configurations in specific environments.
#SpringBoot #JavaDev

💡Java tip: Starting from Java 8 prefer java.time over Date and Calendar. #ModernJava #JavaDev

mario_casari's tweet image. 💡Java tip: Starting from Java 8 prefer java.time over Date and Calendar.
#ModernJava #JavaDev

💡Spring Boot tip: Use H2 if you need an in-memory database for dev/testing. #SpringBoot #JavaDev

mario_casari's tweet image. 💡Spring Boot tip: Use H2 if you need an in-memory   database for dev/testing.
 #SpringBoot #JavaDev

💡Java tip: Starting from Java 14 you can use switch expressions for shorter and cleaner multi-branch logic. #Java #JavaDev

mario_casari's tweet image. 💡Java tip: Starting from Java 14 you can use switch expressions for shorter and cleaner multi-branch logic.
#Java #JavaDev

Today was all about debugging the OWASP Dependency-Check integration in my Java project. The NVD API refused to cooperate, but I learned more about Maven configs & static analysis than I planned to 😅 #JavaDev


🚀 Use ReentrantReadWriteLock Java concurrence utility if you have to deal with frequent reads and fewer writes. #Java #JavaDev

mario_casari's tweet image. 🚀 Use ReentrantReadWriteLock Java concurrence utility if you have to deal with frequent reads and fewer writes. #Java #JavaDev

🚀 Java: With CompletableFuture.allOf(...) you can wait on multiple async tasks without manual join handling. #Java #JavaDev

mario_casari's tweet image. 🚀 Java: With CompletableFuture.allOf(...) you can wait on multiple async tasks without manual join handling.
#Java #JavaDev

💡 Java tip: Use Stream.peek() for debugging in pipelines, not for business logic. ✅ Stream.peek() lets you perform logging or inspection on each element as it flows through a stream without modifying it. #Java #JavaDev

mario_casari's tweet image. 💡 Java tip: Use Stream.peek() for debugging in pipelines, not for business logic.

✅ Stream.peek() lets you perform logging or inspection on each element as it flows through a stream without modifying it.
#Java #JavaDev

💡 Java tip: List.reversed() returns an unmodifiable reversed view of the original list. #Java #JavaDev

mario_casari's tweet image. 💡 Java tip: List.reversed() returns an unmodifiable reversed view of the original list. #Java #JavaDev

💡 Java tip: From Java 9 you can use Objects.checkIndex(...) to replace manual if checks for validating index bounds. ✅It is a small feature that helps making the code cleaner. #Java #JavaDev

mario_casari's tweet image. 💡 Java tip: From Java 9 you can use Objects.checkIndex(...) to replace manual if checks for validating index bounds. 

✅It is a small feature that helps making the code cleaner. 

#Java #JavaDev

💡Java tip: With pattern matching for the instanceof operator, Java lets you declare a variable directly inside the instanceof check. #Java #JavaDev

mario_casari's tweet image. 💡Java tip: With pattern matching for the instanceof operator, Java lets you declare a variable directly inside the instanceof check.
#Java #JavaDev

💡 Java tip: Stream.toArray(Type[]::new) is a clean, type-safe way to get arrays from streams. ✅ Avoids Object[] and casting. #Java #JavaDev

mario_casari's tweet image. 💡 Java tip: Stream.toArray(Type[]::new) is a clean, type-safe way to get arrays from streams. 

✅ Avoids Object[] and casting.
#Java #JavaDev

🚀 Use Files.isSameFile(path1, path2) to check if two paths refer to the same file. It resolves symlinks too. ✅ It checks whether two Path objects refer to the same actual file in the file system. #Java #JavaDev

mario_casari's tweet image. 🚀  Use Files.isSameFile(path1, path2) to check if two paths refer to the same file. It resolves symlinks too.

✅ It checks whether two Path objects refer to the same actual file in the file system.
#Java #JavaDev

🚀 Spring Boot tip: With Spring Boot and Spring Security you can secure endpoints easily. #SpringBoot #JavaDev

mario_casari's tweet image. 🚀 Spring Boot tip: With Spring Boot and Spring Security you can secure endpoints easily.
#SpringBoot #JavaDev

Today was all about debugging the OWASP Dependency-Check integration in my Java project. The NVD API refused to cooperate, but I learned more about Maven configs & static analysis than I planned to 😅 #JavaDev


Looking for the best tool to create clean UML diagrams for documentation. Any suggestions? 💭 #BuildInPublic #JavaDev #SpringBoot #100DaysOfCode #BackendDevelopment


🚀 Starting a new project: CollegeSphere 🎓 A College Management System I’ll build in 30 days using Spring Boot. It’ll include student & faculty management, authentication, and REST APIs. Excited to #BuildInPublic & share daily progress! 💪 #JavaDev #SpringBoot #100DaysOfCode


🚀 Lightweight, fast, and beautifully designed — FlatLaf brings Swing back into the modern era. #FlatLaf #JavaDev


💡 Java tip: Use StringBuilder instead of String for concatenating strings in loops. ❌ String is immutable, making it inefficient in loops, especially large ones. ✅ StringBuilder is mutable and optimized for repeated string appends. #Java #JavaDev

mario_casari's tweet image. 💡 Java tip: Use StringBuilder instead of String for concatenating strings in loops.

❌ String is immutable, making it inefficient in loops, especially large ones.

✅ StringBuilder is mutable and optimized for repeated string appends.
#Java #JavaDev

[WORKSHOP] Cloud Native Spring – Crafting the Perfect Java Image for K8s Save your spot here: hubs.la/Q03ScJyF0 #java #Kubernetes #JavaDev #CloudNative #DevOps #K8s

Amichai's tweet image. [WORKSHOP] Cloud Native Spring – Crafting the Perfect Java Image for K8s

Save your spot here: hubs.la/Q03ScJyF0
 #java #Kubernetes #JavaDev #CloudNative #DevOps #K8s

⚡ Performance gains, better GC, and new developer tools — Java 25 is built for scale and speed. #JavaDev


💡 Spring Boot: To better handle circular dependencies, use constructor injection instead of field injection. ✅ Forces all required dependencies to be provided at creation time, allowing early detection. #SpringBoot #JavaDev

mario_casari's tweet image. 💡 Spring Boot: To better handle circular dependencies, use constructor injection instead of field injection.

✅ Forces all required dependencies to be provided at creation time, allowing early detection.
#SpringBoot #JavaDev

💡 Java tip: From Java 9 you can use Objects.checkIndex(...) to replace manual if checks for validating index bounds. ✅It is a small feature that helps making the code cleaner. #Java #JavaDev

mario_casari's tweet image. 💡 Java tip: From Java 9 you can use Objects.checkIndex(...) to replace manual if checks for validating index bounds. 

✅It is a small feature that helps making the code cleaner. 

#Java #JavaDev

Step into tech at Maersk Bangalore as an Associate Software Engineer! Build scalable Customs platforms with Java, Spring, Azure & more. 🚀 #SoftwareJobs #MaerskCareers #JavaDev #AgileTech #Bangalore Jobshttps://jobformore.com/maersk-off-campus-drive/


🧠 Dive deep into FlatLaf, the Look & Feel that’s redefining Swing’s aesthetics. #JavaDev #DesktopApps


💡 Java tip: Starting from Java 8, you can remove nulls easily with list.removeIf(Objects::isNull). #Java #JavaDev

mario_casari's tweet image. 💡 Java tip: Starting from Java 8, you can remove nulls easily with list.removeIf(Objects::isNull).
#Java #JavaDev

🚀 JUnit 5 Tip 🚀 Since JUnit 5, leverage package-private visibility for classes and methods to enhance encapsulation in your tests. This helps keep your testing logic close to the code it's testing while maintaining a clean and organized codebase. #JUnit #Testing #JavaDev

mnhocktweets's tweet image. 🚀 JUnit 5 Tip 🚀

Since JUnit 5, leverage package-private visibility for classes and methods to enhance encapsulation in your tests.  This helps keep your testing logic close to the code it's testing while maintaining a clean and organized codebase.

#JUnit #Testing #JavaDev

🎯 Learn everything about Eclipse OpenJ9 — from architecture to tuning tips — in one comprehensive guide. #JavaDev #Performance


💡Spring Boot tip: Use @Profile to group and load beans/configurations in specific environments. #SpringBoot #JavaDev

mario_casari's tweet image. 💡Spring Boot tip: Use @Profile to group and load beans/configurations in specific environments.
#SpringBoot #JavaDev

💡Spring Boot tip: Use H2 if you need an in-memory database for dev/testing. #SpringBoot #JavaDev

mario_casari's tweet image. 💡Spring Boot tip: Use H2 if you need an in-memory   database for dev/testing.
 #SpringBoot #JavaDev

🚀 Spring Boot tip: With Spring Boot and Spring Security you can secure endpoints easily. #SpringBoot #JavaDev

mario_casari's tweet image. 🚀 Spring Boot tip: With Spring Boot and Spring Security you can secure endpoints easily.
#SpringBoot #JavaDev

💡Java tip: Use HashMap as Map implementation when you need greatest general-purpose performance. #Java #JavaDev

mario_casari's tweet image. 💡Java tip: Use HashMap as Map implementation when you need greatest general-purpose performance.
#Java  #JavaDev

💡Java tip: Starting from Java 14 you can use switch expressions for shorter and cleaner multi-branch logic. #Java #JavaDev

mario_casari's tweet image. 💡Java tip: Starting from Java 14 you can use switch expressions for shorter and cleaner multi-branch logic.
#Java #JavaDev

🚀 JUnit 5 Tip 🚀 Since JUnit 5, leverage package-private visibility for classes and methods to enhance encapsulation in your tests. This helps keep your testing logic close to the code it's testing while maintaining a clean and organized codebase. #JUnit #Testing #JavaDev

mnhocktweets's tweet image. 🚀 JUnit 5 Tip 🚀

Since JUnit 5, leverage package-private visibility for classes and methods to enhance encapsulation in your tests.  This helps keep your testing logic close to the code it's testing while maintaining a clean and organized codebase.

#JUnit #Testing #JavaDev

💡 Java tip: From Java 9 you can use Objects.checkIndex(...) to replace manual if checks for validating index bounds. ✅It is a small feature that helps making the code cleaner. #Java #JavaDev

mario_casari's tweet image. 💡 Java tip: From Java 9 you can use Objects.checkIndex(...) to replace manual if checks for validating index bounds. 

✅It is a small feature that helps making the code cleaner. 

#Java #JavaDev

💡 Spring Boot: You can run jobs at fixed intervals without setting up Quartz or external schedulers. #SpringBoot #JavaDev

mario_casari's tweet image. 💡 Spring Boot: You can run jobs at fixed intervals without setting up Quartz or external schedulers.
#SpringBoot #JavaDev

🚀 Java: With CompletableFuture.allOf(...) you can wait on multiple async tasks without manual join handling. #Java #JavaDev

mario_casari's tweet image. 🚀 Java: With CompletableFuture.allOf(...) you can wait on multiple async tasks without manual join handling.
#Java #JavaDev

💡Java tip: Starting from Java 8 prefer java.time over Date and Calendar. #ModernJava #JavaDev

mario_casari's tweet image. 💡Java tip: Starting from Java 8 prefer java.time over Date and Calendar.
#ModernJava #JavaDev

💡 Java tip: Starting from Java 8, you can remove nulls easily with list.removeIf(Objects::isNull). #Java #JavaDev

mario_casari's tweet image. 💡 Java tip: Starting from Java 8, you can remove nulls easily with list.removeIf(Objects::isNull).
#Java #JavaDev

💡 Java tip: Use Stream.peek() for debugging in pipelines, not for business logic. ✅ Stream.peek() lets you perform logging or inspection on each element as it flows through a stream without modifying it. #Java #JavaDev

mario_casari's tweet image. 💡 Java tip: Use Stream.peek() for debugging in pipelines, not for business logic.

✅ Stream.peek() lets you perform logging or inspection on each element as it flows through a stream without modifying it.
#Java #JavaDev

💡Spring Boot tip: Use H2 if you need an in-memory database for dev/testing. #SpringBoot #JavaDev

mario_casari's tweet image. 💡Spring Boot tip: Use H2 if you need an in-memory   database for dev/testing.
 #SpringBoot #JavaDev

💡 Java tip: Stream.toArray(Type[]::new) is a clean, type-safe way to get arrays from streams. ✅ Avoids Object[] and casting. #Java #JavaDev

mario_casari's tweet image. 💡 Java tip: Stream.toArray(Type[]::new) is a clean, type-safe way to get arrays from streams. 

✅ Avoids Object[] and casting.
#Java #JavaDev

💡 Java tip: List.reversed() returns an unmodifiable reversed view of the original list. #Java #JavaDev

mario_casari's tweet image. 💡 Java tip: List.reversed() returns an unmodifiable reversed view of the original list. #Java #JavaDev

🚀 Use ReentrantReadWriteLock Java concurrence utility if you have to deal with frequent reads and fewer writes. #Java #JavaDev

mario_casari's tweet image. 🚀 Use ReentrantReadWriteLock Java concurrence utility if you have to deal with frequent reads and fewer writes. #Java #JavaDev

💡 Spring Boot: To better handle circular dependencies, use constructor injection instead of field injection. ✅ Forces all required dependencies to be provided at creation time, allowing early detection. #SpringBoot #JavaDev

mario_casari's tweet image. 💡 Spring Boot: To better handle circular dependencies, use constructor injection instead of field injection.

✅ Forces all required dependencies to be provided at creation time, allowing early detection.
#SpringBoot #JavaDev

🚀 With Collectors.summarizingInt() you can get count, sum, min, max, avg in one pass. #Java #JavaDev

mario_casari's tweet image. 🚀 With Collectors.summarizingInt() you can get count, sum, min, max, avg in one pass.
#Java #JavaDev

💡 Spring Boot tip: Use spring-boot-starter-logging (Logback) for logging, it is already included as default. ✅ spring-boot-starter-logging is already included in most starters (spring-boot-starter-web, spring-boot-starter-data-jpa, etc.) #SpringBoot #JavaDev

mario_casari's tweet image. 💡 Spring Boot tip: Use spring-boot-starter-logging (Logback) for logging, it is already included as default.

✅ spring-boot-starter-logging is already included in most starters (spring-boot-starter-web, spring-boot-starter-data-jpa, etc.)
#SpringBoot #JavaDev

#Java from @geeksforgeeks 🚀 ✅Methods ✅Static Method vs Instance Method ✅Command Line Arguments ✅Variable Arguments (Varargs) #100DaysOfCode #JavaDev #programmer #CodingJourney #CodingLife #LearnInPublic #GeeksforGeeks #gfg #nationskillup #skillupwithgfg #100DaysOfCoding

amanhaidry's tweet image. #Java from @geeksforgeeks 🚀
✅Methods
✅Static Method vs Instance Method
✅Command Line Arguments
✅Variable Arguments (Varargs)

#100DaysOfCode #JavaDev #programmer #CodingJourney #CodingLife #LearnInPublic #GeeksforGeeks #gfg #nationskillup #skillupwithgfg #100DaysOfCoding
amanhaidry's tweet image. #Java from @geeksforgeeks 🚀
✅Methods
✅Static Method vs Instance Method
✅Command Line Arguments
✅Variable Arguments (Varargs)

#100DaysOfCode #JavaDev #programmer #CodingJourney #CodingLife #LearnInPublic #GeeksforGeeks #gfg #nationskillup #skillupwithgfg #100DaysOfCoding
amanhaidry's tweet image. #Java from @geeksforgeeks 🚀
✅Methods
✅Static Method vs Instance Method
✅Command Line Arguments
✅Variable Arguments (Varargs)

#100DaysOfCode #JavaDev #programmer #CodingJourney #CodingLife #LearnInPublic #GeeksforGeeks #gfg #nationskillup #skillupwithgfg #100DaysOfCoding
amanhaidry's tweet image. #Java from @geeksforgeeks 🚀
✅Methods
✅Static Method vs Instance Method
✅Command Line Arguments
✅Variable Arguments (Varargs)

#100DaysOfCode #JavaDev #programmer #CodingJourney #CodingLife #LearnInPublic #GeeksforGeeks #gfg #nationskillup #skillupwithgfg #100DaysOfCoding

Loading...

Something went wrong.


Something went wrong.


United States Trends