SDKMAN! Managing SDKs Was Never so Easy

#ICYMI: If you’re working on multiple Java projects, it is very common to switch between different Java versions. I face this too often. We have a number of projects running in production that need a different Java version. Sometimes, we need to fix issues or to add a customer required feature in older projects. These older projects require Java version 6 or 7, while newer projects require Java 8 or 9. So, it is often required to switch between them during development.

There are many different ways to switch between Java versions, and most of them are dependent on different OS environments i.e. MacOS, Linux, Windows, etc. Below are some examples of how to do the switching. https://goo.gl/iGB3Sn

How to Create a REST API With Spring Boot

In this post, we will learn how to create REST API with Spring Boot, JPA, Hibernate, and MySQL.

* Create the Spring Boot Project.
* Define Database configurations.
* Create an Entity Class.
* Create JPA Data Repository layer.
* Create Rest Controllers and map API requests.
* Create Unit Testing for API requests and run the unit testing.
* Build and run the Project.

Requirement

We need to create a simple REST API to store user data to MySQL database with that API so we can create, update, delete, and get users information. https://goo.gl/K3GCxs