#javadev search results
🚀 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
💡 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
💡 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
💡Spring Boot tip: Use @Profile to group and load beans/configurations in specific environments. #SpringBoot #JavaDev
💡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
🚀 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
💡 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
💡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
🚀 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
[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
JSpecify. How to avoid NullPointerException with Nullable annotation. youtu.be/QlGnaRoujL8?si… #Java #JavaDev #Dev
youtube.com
YouTube
⛔ Stop NullPointerExceptions Before Production in Spring Boot 4 with...
💡 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
Build Better Agents in #Java vs Python: Embabel vs LangGraph #javaprogramming #javadev #dormosheio dormoshe.io/trending-news/…
💡 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
🚀 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
#Java from @geeksforgeeks 🚀 ✅OOPs Basics ✅Classes and Objects ✅Constructors ✅this Keyword #365DaysOfCode #JavaDev #programmer #Coding #CodingJourney #CodingLife #LearnInPublic #GeeksforGeeks #gfg #nationskillup #skillupwithgfg #365DaysOfCoding
🚀 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
💡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
💡 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
🚀 Java: With CompletableFuture.allOf(...) you can wait on multiple async tasks without manual join handling. #Java #JavaDev
💡 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
💡 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
#Java from @geeksforgeeks 🚀 ✅Jagged Array ✅Arrays Class ✅Final Array ✅Java Strings #100DaysOfCode #JavaDev #programmer #code #Coding #CodingJourney #CodingLife #LearnInPublic #GeeksforGeeks #gfg #nationskillup #skillupwithgfg #100DaysOfCoding
🚀 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
🚀 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
#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
Something went wrong.
Something went wrong.
United States Trends
- 1. Penn State 22.1K posts
- 2. Mendoza 19K posts
- 3. Gus Johnson 6,260 posts
- 4. #iufb 3,998 posts
- 5. $SSHIB 1,287 posts
- 6. Omar Cooper 9,080 posts
- 7. Sayin 65.8K posts
- 8. Estevao 31.9K posts
- 9. Sunderland 151K posts
- 10. #UFCVegas111 3,830 posts
- 11. Iowa 18.7K posts
- 12. Jim Knowles N/A
- 13. Texas Tech 13.3K posts
- 14. James Franklin 8,168 posts
- 15. Happy Valley 1,823 posts
- 16. Oregon 32.9K posts
- 17. Mizzou 3,325 posts
- 18. Arsenal 253K posts
- 19. Garnacho 23.6K posts
- 20. Neto 26.3K posts