RandomWits

life is too short for a diary



Posts Tagged: java (Page 4)

Daily Logs for July 20, 2025

Dear Vishi, my logs for today...

Continue reading โ†’ letters jbang java



Types in Java

Java is a statically typed language , which means that every variable, method parameter, and expression must have a defined type known at compile time. This helps catch errors early and improves code reliability...

Continue reading โ†’ java



Mastering Parameterized Tests in JUnit 5 with Spring Boot

Want to test smarter, not harder? Parameterized tests let you run the same test with multiple inputs. In this guide, we'll dive into JUnit's `@ParameterizedTest` using `@MethodSource` and `@CsvSource`, plus how to hook it all into Spring Boot...

Continue reading โ†’ java spring boot