-
Core Java
Property-Based Testing in Java with jqwik: Practical Examples
Testing is a critical aspect of software development, and traditional unit testing often focuses on specific inputs and outputs. Property-based…
Read More » -
Core Java
Mocking an Enum Using Mockito
When writing unit tests in Java, there are scenarios where we need to mock certain classes or behaviors to isolate…
Read More » -
Software Development
Understanding the Rust Ecosystem: A Deep Dive into Cargo and Crates
Rust is renowned for its performance, safety, and developer-friendly ecosystem. At the heart of this ecosystem is Cargo, Rust’s package…
Read More » -
Core Java
An Introduction to Contract Testing in Java with Pact
In modern microservice architectures, communication between services is key. However, ensuring that services interact correctly can be challenging, especially when…
Read More » -
Enterprise Java
Execute Scheduled Task Only Once in Spring Boot
Usually, we configure tasks to run periodically. However, there are situations where we may need to schedule a task to…
Read More » -
Core Java
Determine CSV File Delimiter In Java
CSV (Comma Separated Values) files are widely used for data storage and transfer. While the default delimiter is often a…
Read More » -
Core Java
Iterate over a Guava Multimap
A Multimap is a collection that maps keys to values, where each key may be associated with multiple values. Let…
Read More » -
Enterprise Java
Using the NetBeans Profiler Programmatically in Java
This article explores how to use the NetBeans Profiler API to collect heap dumps, analyze memory usage, and inspect specific…
Read More »