Custom Login Page for Returning User 1. Introduction This article is a continuation of our ongoing registration with Spring Security series. In this article, we are going to have a look at how to develop a custom login page for a user who is returning to our application. The user… Continue Reading custom-login-page-for-returning-user

Java instanceof Operator 1. Introduction In this quick tutorial, we’ll learn about the instanceof operator in Java. 2. What is the instanceof Operator? instanceof is a binary operator used to test if an object is of a given type. The result of the operation is either true or false. It’s also known as type comparison operator because it… Continue Reading java-instanceof

Initializing Arrays in Kotlin   1. Overview In this quick tutorial, we’ll look at how we can initialize an array in Kotlin. 2. arrayOf Library Method Kotlin has a built-in arrayOf method which converts the provided enumerated values into an array of the given type: val strings = arrayOf(“January”, “February”, “March”)… Continue Reading kotlin-initialize-array