System Requirements for Java 8

Java 8 is a stable release of Java. It is used by millions of Java professionals over the globe. Here, we will discuss the System Requirements for Java 8. In this section, we will discuss the requirements that we must meet to install Java 8 on different platforms: Java is a platform-independent language so we … Read more

Spring Boot Starter Test

Spring Boot Starter Test The Spring Boot Starter Test dependency is a primary dependency for testing the Spring Boot Applications. It holds all the necessary elements required for the testing. In Spring Boot, there are lots of tests that can be performed over a Spring Boot application. To perform these tests we have to integrate … Read more

Spring Boot Starter Data JPA with H2 Database

Spring Boot Starter Data JPA Spring Boot Starter Data JPA is used to connect the Spring application with a relational database efficiently using a spring-boot-starter-data-jpa dependency, which internally uses a spring-boot-jpa dependency (since Spring Boot version 1.5.3). Before diving into this topic, let’s understand what is Spring Data JPA. What is Spring Data & Data … Read more