Spring Boot 2.0 was finally released on May 1, 2018, and my blog has been upgraded to it from Spring Boot 1.5.9.
Spring Boot 2.0 is a major update of 17 months' work. It breaks some configurations due to refactoring and dependency updates along with it.
Package removable/rename:
spring-boot-starter-mobilestarter is removed.spring-sessionshould be replaced byspring-session-data-redis.
Gradle plugin updates:
- Dependency management plugin is no longer automatically applied, and should be explicitly enabled.
- The
bootRepackagetask is replaced bybootJar, and as a resultjartask is no longer not invoked when building executable jars. This breaks configuration forjartask.
Dependency updates:
- Hibernate validator from 5.3.6 to 6.0.7:
org.hibernate.validator.constraints.NotEmptyis deprecated andjavax.validation.constraints.NotEmptyshould be used. - Flyway: Spring Boot's default
flyway.tablehas been changed fromschema_versiontoflyway_schema_history. spring-data-commonsfrom 1.13 to 2.0: Configuration for 1-based pagination has to be changed.
Refactoring:
AbstractErrorController,ErrorViewResolverare moved from packageorg.springframework.boot.autoconfigure.webtoorg.springframework.boot.autoconfigure.web.servlet.error.FreeMarkerAutoConfiguration.FreeMarkerWebConfigurationis replaced by a package-private class, breaking the configuration that extends the class.
