Working with JDBC API
JDBC is a SQL (Structured Query Language) API that was release for the first time in 1996 and since then is one of the most commonly use Java libraries. The purpose of this libr...
Get Started with Mockito
Mockito is a popular mocking framework for Java applications. This framework helps you test classes in isolation and avoids creating collaborators in your unit tests. This is a ...
Get Started with Java Servlets
What Is a Servlet? A Java Servlet is simply a class that extends from one of the classes in javax.servlet.http or javax.servlet packages and is used in applications to handle n...
Centralized Configuration With Spring Cloud Config Server
Spring Cloud Config Server provides remote configuration for your Spring applications or any application running in any language. This tool has been out there for a long time, s...