Create a new Spring Boot Maven Application mvn archetype:generate -DgroupId=com.splitwise -DartifactId=SplitwiseAssignment -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false The above will create a sample application Open this in intellij Then add the following dependencies : Parent add : < parent > < groupId > org.springframework.boot </ groupId > < artifactId > spring-boot-starter-parent </ artifactId > < version > 2.1.9.RELEASE </ version > </ parent > Dependency : < dependency > < groupId > org.springframework.boot </ groupId > < artifactId > spring-boot-starter-web </ artifactId > </ dependency > < dependency > < groupId > org.projectlombok </ groupId > < artifactId > lombok </ artifactId > < version > 1.18.10 </ version > </ dependency > < build > < plugi
- Get link
- X
- Other Apps