#javadev wyniki wyszukiwania

💡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 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: 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

💡 Java tip: Starting from Java 12 you can use String.transform(Function) to apply lambdas directly to strings. #Java #JavaDev

mario_casari's tweet image. 💡 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

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: 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

🚀 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

💡Java tip: Use Collectors.groupingBy(...) to group stream results by a classifier. #Java #JavaDev

mario_casari's tweet image. 💡Java tip: Use Collectors.groupingBy(...) to group stream results by a classifier.
#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

mario_casari's tweet image. 💡 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

mario_casari's tweet image. 💡 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

mario_casari's tweet image. 🚀 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

RiyaTyagi155121's tweet image. Getting back on track with Java.
Implemented a HashMap today and revised its core operations.
More to come. #BackToCode #JavaDev
RiyaTyagi155121's tweet image. Getting back on track with Java.
Implemented a HashMap today and revised its core operations.
More to come. #BackToCode #JavaDev
RiyaTyagi155121's tweet image. Getting back on track with Java.
Implemented a HashMap today and revised its core operations.
More to come. #BackToCode #JavaDev
RiyaTyagi155121's tweet image. 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

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

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


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

mario_casari's tweet image. 💡 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


💡 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

kingsleycodes_'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

🛠️ 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

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

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

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

⚡ 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

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 12 you can use String.transform(Function) to apply lambdas directly to strings. #Java #JavaDev

mario_casari's tweet image. 💡 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

mario_casari's tweet image. 🚀 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

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

💡 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: 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: 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

mario_casari's tweet image. 💡 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

mario_casari's tweet image. 💡 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

🚀 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

💡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

💡 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 tip: Use ThreadLocal.withInitial(...) to provide each thread its own safe default value. ✅ The value is created lazily #Java #JavaDev

mario_casari's tweet image. 💡Java tip: Use ThreadLocal.withInitial(...) to provide each thread its own safe default value.

✅ The value is created lazily
#Java #JavaDev

💡Java tip: Use Collectors.groupingBy(...) to group stream results by a classifier. #Java #JavaDev

mario_casari's tweet image. 💡Java tip: Use Collectors.groupingBy(...) to group stream results by a classifier.
#Java #JavaDev

Getting back on track with Java. Implemented a HashMap today and revised its core operations. More to come. #BackToCode #JavaDev

RiyaTyagi155121's tweet image. Getting back on track with Java.
Implemented a HashMap today and revised its core operations.
More to come. #BackToCode #JavaDev
RiyaTyagi155121's tweet image. Getting back on track with Java.
Implemented a HashMap today and revised its core operations.
More to come. #BackToCode #JavaDev
RiyaTyagi155121's tweet image. Getting back on track with Java.
Implemented a HashMap today and revised its core operations.
More to come. #BackToCode #JavaDev
RiyaTyagi155121's tweet image. 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

mnhocktweets's tweet image. 🚀 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

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