Create spring boot application in IntelliJ idea
Create spring boot application First, you need to IntelliJ IDEA for development then click and download IntelliJ IDEA. 1. Click create new project button: 2. Create the Maven project: 3. Enter your project name: 4. Add the following dependency in the pom.xml file: <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>2.5.1</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>2.3.4.RELEASE</version> </dependency> </dependencies> 5. POM.xml file: <?xml version=”1.0″ […]