Upgrade samples to Spring Boot 2.3.1.RELEASE

Closes gh-1650
This commit is contained in:
Eleftheria Stein
2020-06-25 21:47:59 +02:00
parent 55a6967331
commit 847433562e
6 changed files with 4 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ buildscript {
snapshotBuild = version.endsWith('SNAPSHOT')
milestoneBuild = !(releaseBuild || snapshotBuild)
springBootVersion = '2.2.7.RELEASE'
springBootVersion = '2.3.1.RELEASE'
}
repositories {

View File

@@ -36,7 +36,7 @@ public class SessionController {
@GetMapping("/")
public String index(Model model, WebSession webSession) {
model.addAttribute("webSession", webSession);
return "index";
return "home";
}
}

View File

@@ -36,7 +36,7 @@ public class SessionController {
@GetMapping("/")
public String index(Model model, WebSession webSession) {
model.addAttribute("webSession", webSession);
return "index";
return "home";
}
private static final long serialVersionUID = 2878267318695777395L;

View File

@@ -8,6 +8,7 @@ dependencies {
compile "org.springframework.boot:spring-boot-starter-data-jpa"
compile "org.springframework.boot:spring-boot-starter-data-redis"
compile "org.springframework.boot:spring-boot-starter-websocket"
compile "org.springframework.boot:spring-boot-starter-validation"
compile "org.springframework.boot:spring-boot-devtools"
compile "org.springframework:spring-websocket"
compile "org.springframework.security:spring-security-messaging"