Spring Boot Maven to create basic CRUD application. You need to add the following dependencies to the pom.xml to make the basic CRUD application spring-boot-starter-data-jpa spring-boot-starter-jdbc spring-boot-starter-web jstl mysql-connector-java spring-boot-starter-tomcat tomcat-embed-jasper So your pom.xml may look like the following pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.ekiras</groupId> <artifactId>springboot</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>war</packaging> <name>springboot</name> <description>Basic Springboot CRUD applicat...