Java Persistence API with Spring Data
Let's try to build simple java application with the help of Spring Tool Suites IDE, Spring-Data connecting and MySql's relation database. You are free to choose any IDE (STS, Eclipse, Intellij etc). We are building simple application which is storing User information into MySQL Database table. Our Requirements are simple IDE (any IDE, STS, Eclipse or Intellij) JDK 1.8 later Maven 3.2 Create a Maven project using spring initializr Open the Spring Initializr ( https://start.spring.io/ ). This is the best way to start the project. Type the https://start.spring.io on url browser The Initializr provides quick solution to place dependency and create project structure. Our requirement is JPA and MySql dependencies. below image shows the Initializr with required dependency selection: Following pom.xml file will be generated having spring-boot-starter-data and mysql-con...