BAEL-1533 Making a Spring MVC Form Remember Values

- add example code
- update pom dependency to spring boot starter 2.0.0.RC2
- update import in SpringApplicationException
This commit is contained in:
Chris Oberle
2018-02-24 15:59:23 -05:00
parent c8d8ba1978
commit 95f0340318
17 changed files with 572 additions and 15 deletions
+6 -2
View File
@@ -14,7 +14,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.M7</version>
<version>2.0.0.RC2</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
@@ -39,10 +39,14 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
</dependency>
<dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-hateoas</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.projectreactor</groupId>
<artifactId>reactor-spring</artifactId>