Add Spring Boot Hello World guide

Add Spring Boot Hello World Guide

Fixes gh-3866
This commit is contained in:
Joe Grandja
2016-05-13 15:05:29 -04:00
committed by Rob Winch
parent c261975be0
commit 66980e827c
25 changed files with 708 additions and 27 deletions

View File

@@ -0,0 +1,12 @@
apply from: BOOT_SAMPLE_GRADLE
springBoot {
mainClass = 'org.springframework.security.samples.InsecureApplication'
}
dependencies {
compile "org.springframework.boot:spring-boot-starter-web:1.3.3.RELEASE",
"org.springframework.boot:spring-boot-starter-thymeleaf:1.3.3.RELEASE"
testCompile "org.springframework.boot:spring-boot-starter-test:1.3.3.RELEASE"
}