-
Enterprise Java
Testing with Mockito
1) Register MockitoExtension @ExtendWith(MockitoExtension.class) class ObjectTest { static final Long ID = 1L; 2) Create the mock @Mock private ObjectRepo…
Read More » -
Enterprise Java
Spring Injection Types
Spring supports three types of dependency injections: Constructor injection @Component public class SecondBeanImpl implements SecondBean { private FirstBean firstBean; @Autowired…
Read More » -
Python
Python join() method Tutorial
Hello in this tutorial, we will understand the join() method in python programming. 1. Introduction The join() method in python…
Read More » -
Software Development
The Pleasures of Replatforming
In an earlier post on migration, I looked at different ways to take a codebase and convert it for a…
Read More » -
Core Java
Testing Logging Output in Java
One of my more popular posts on this site is on how to use Mockito to mock logging. Testing that…
Read More » -
Kotlin
How To Convert String to Float in Kotlin?
1. Overview In this tutorial, We will learn how to convert the String value to Float in Kotlin. This conversion…
Read More » -
Web Development
[MEGA DEAL] The Ultimate 2021 Web Developer & Designer Super Bundle (98% off)
14 New Courses & 39 Hours of Content on JavaScript, HTML5, CSS, & More — Master the Coding Fundamentals and…
Read More » -
Kotlin
Kotlin Variables and Basic Types With Examples – Kotlin Tutorial
1. Overview In this tutorial, We will learn how to create the variables in Koltin for basic types using var.…
Read More » -
Kotlin
Kotlin – Convert Map to List Examples
1. Overview In this tutorial, We will learn how to convert the Map to List in kotlin programming. Map implementations…
Read More »