#javadev wyniki wyszukiwania
💡Java tip: Use HashMap as Map implementation when you need greatest general-purpose performance. #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
💡 Spring Boot: You can run jobs at fixed intervals without setting up Quartz or external schedulers. #SpringBoot #JavaDev
💡Java tip: Starting from Java 14 you can use switch expressions for shorter and cleaner multi-branch logic. #Java #JavaDev
💡 Java tip: Starting from Java 12 you can use String.transform(Function) to apply lambdas directly to strings. #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: 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
#Java from @geeksforgeeks 🚀 ✅Java Variables ✅Typecasting in Java ✅Widening Type Casting ✅Explicit Type Casting #100DaysOfCode #JavaDev #programmer #code #Coding #CodingJourney #CodingLife #LearnInPublic #GeeksforGeeks #gfg #nationskillup #skillupwithgfg #100DaysOfCoding
🚀 With Collectors.summarizingInt() you can get count, sum, min, max, avg in one pass. #Java #JavaDev
💡 Java tip: Starting from Java 8 you can use ChronoUnit.between(start, end) to calculate time intervals in a specific unit (days, hours, minutes) without manual math. #Java #JavaDev
💡 Java tip: Use Optional.filter(...) to add inline conditions to an Optional object. ✅ It lets you apply a condition directly and it returns the original Optional if the predicate passes, an empty one otherwise. #Java #JavaDev
🚀 Use ReentrantReadWriteLock Java concurrence utility if you have to deal with frequent reads and fewer writes. #Java #JavaDev
Getting back on track with Java. Implemented a HashMap today and revised its core operations. More to come. #BackToCode #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
Built my 2nd Spring Boot API — FootballZone ⚽💻 You can search players by name, country, position & more 👀 Full CRUD + PostgreSQL 🗄️ Debugging was pain ngl 😩 but we move 💪 #SpringBoot #JavaDev #100DaysOfCode #buildinginpublic
✨ No more getters, setters, or constructors! Discover how Record Classes make your Java code cleaner. #JavaDev
💡 Want a faster startup and smaller memory footprint? Time to explore Eclipse OpenJ9 — the JVM for modern cloud apps. #JavaDev
static vs instance methods explained: Static: Math.max(5, 10) ✅ Belongs to CLASS No object needed Instance: list.add(5) ✅ Belongs to OBJECT Needs object first Static = shared across all Instance = unique per object 🎯 #JavaDev #Programming
#Java from @geeksforgeeks 🚀 ✅String Class ✅StringBuffer Class ✅StringBuilder Class ✅Regular Expressions #100DaysOfCode #JavaDev #programmer #code #Coding #CodingJourney #CodingLife #LearnInPublic #GeeksforGeeks #gfg #nationskillup #skillupwithgfg #100DaysOfCoding
This is gold. I’ve always defaulted to cron jobs, but @Scheduled in Spring Boot feels so natural for small recurring jobs. Example: @Scheduled(cron = "0 0/5 * * * ?") // every 5 mins Big fan of how Spring keeps things simple 🙏 #SpringBoot #JavaDev
💡 Spring Boot: You can run jobs at fixed intervals without setting up Quartz or external schedulers. #SpringBoot #JavaDev
🎯 Focus on business logic, not persistence noise. Hibernate Panache takes care of the rest. #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
💡 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
🛠️ Developers who use SpotBugs spend less time fixing and more time building. Start clean, stay clean. #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
Built my 2nd Spring Boot API — FootballZone ⚽💻 You can search players by name, country, position & more 👀 Full CRUD + PostgreSQL 🗄️ Debugging was pain ngl 😩 but we move 💪 #SpringBoot #JavaDev #100DaysOfCode #buildinginpublic
💡Java tip: Starting from Java 14 you can use switch expressions for shorter and cleaner multi-branch logic. #Java #JavaDev
System Design Pattern : Scaling Reads : Reads Are the Silent Killers of Performance : Here’s the Cure. #java #javaprogramming #javadev #dormosheio dormoshe.io/trending-news/…
⚡ Faster coding, fewer lines. Hibernate Panache = modern persistence for modern developers. #JavaDev
💡Java tip: Use HashMap as Map implementation when you need greatest general-purpose performance. #Java #JavaDev
💡 Java tip: Starting from Java 12 you can use String.transform(Function) to apply lambdas directly to strings. #Java #JavaDev
🚀 Java: With CompletableFuture.allOf(...) you can wait on multiple async tasks without manual join handling. #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 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 from @geeksforgeeks 🚀 ✅Java Variables ✅Typecasting in Java ✅Widening Type Casting ✅Explicit Type Casting #100DaysOfCode #JavaDev #programmer #code #Coding #CodingJourney #CodingLife #LearnInPublic #GeeksforGeeks #gfg #nationskillup #skillupwithgfg #100DaysOfCoding
💡 Spring Boot: You can run jobs at fixed intervals without setting up Quartz or external schedulers. #SpringBoot #JavaDev
💡 Java tip: Starting from Java 8 you can use ChronoUnit.between(start, end) to calculate time intervals in a specific unit (days, hours, minutes) without manual math. #Java #JavaDev
💡 Java tip: Use Optional.filter(...) to add inline conditions to an Optional object. ✅ It lets you apply a condition directly and it returns the original Optional if the predicate passes, an empty one otherwise. #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
🚀 With Collectors.summarizingInt() you can get count, sum, min, max, avg in one pass. #Java #JavaDev
💡Java tip: Starting from Java 14 you can use switch expressions for shorter and cleaner multi-branch logic. #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 tip: Use ThreadLocal.withInitial(...) to provide each thread its own safe default value. ✅ The value is created lazily #Java #JavaDev
Getting back on track with Java. Implemented a HashMap today and revised its core operations. More to come. #BackToCode #JavaDev
🚀 JUnit 5 Tip🚀 In 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. #JUnit5 #Testing #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. Ohtani 76.4K posts
- 2. #WorldSeries 81.2K posts
- 3. #Dodgers 14.5K posts
- 4. Draymond 3,804 posts
- 5. Edman 7,106 posts
- 6. Mookie 9,278 posts
- 7. Vladdy 7,424 posts
- 8. Chiefs 81K posts
- 9. #WWERaw 45.2K posts
- 10. Kershaw 2,687 posts
- 11. Mahomes 25.3K posts
- 12. Grokipedia 37.9K posts
- 13. Sheehan 1,662 posts
- 14. Mariota 7,845 posts
- 15. Schneider 8,293 posts
- 16. Treinen 2,973 posts
- 17. Freddie 11.9K posts
- 18. Wikipedia 41.3K posts
- 19. Teoscar 7,462 posts
- 20. Kelce 17.2K posts