In order to build a spring boot application please visit http://start.spring.io

Select all the spring boot starter packages, finally, generate the code. A zipped file will be created for Maven or Gradle project.
Running Using Maven:
$ mvnw spring-boot:run
Running using Gradle:
gradle clean build
Finally, run using java -jar build/libs/hkj-project-1.jar
plugins {
id ‘org.springframework.boot’ version ‘2.2.3.BUILD-SNAPSHOT’
id ‘io.spring.dependency-management’ version ‘1.0.8.RELEASE’
id ‘java’
}
group = ‘com.bis’
archivesBaseName = ‘hkj-project-1’
version = ‘’
sourceCompatibility = ‘11’
repositories {
mavenCentral()
maven { url ‘https://repo.spring.io/milestone' }
maven { url ‘https://repo.spring.io/snapshot' }
}
dependencies {
implementation ‘org.springframework.boot:spring-boot-starter’
testImplementation(‘org.springframework.boot:spring-boot-starter-test’) {
exclude group: ‘org.junit.vintage’, module: ‘junit-vintage-engine’
}
compile group: ‘org.springframework.boot’, name: ‘spring-boot-starter-web’, version: ‘2.2.2.RELEASE’
}
test {
useJUnitPlatform()
}
Assessment Management Software
Multiple Choice Question Software