Spring Boot 2 的首个维护版本 Spring Boot 2.0.1 已发布,现在可以从 repo.spring.io 和 Maven Central 获取更新。
该版本包含 160 项 修复、改进和依赖项更新,Spring Boot 中的 Spring Framework 包含解决多个漏洞报告的修复程序。请参阅 此博客文章 了解更多详情。
详情请查看发布说明: https://spring.io/blog/2018/04/05/spring-boot-2-0-1-available-now
Maven
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.1.RELEASE</version> </parent> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies>