1. XenForo 1.5.14 中文版——支持中文搜索!现已发布!查看详情
  2. Xenforo 爱好者讨论群:215909318 XenForo专区

新闻 Spring Boot 2.0.0 终于正式发布,重大修订版本 下载

本帖由 漂亮的石头2018-03-01 发布。版面名称:软件资讯

  1. 漂亮的石头

    漂亮的石头 版主 管理成员

    注册:
    2012-02-10
    帖子:
    488,119
    赞:
    47
    北京时间 2018 年 3 月 1 日早上,如约发布的 Spring Boot 2.0 在同步至 Maven 仓库时出现问题,导致在 GitHub 上发布的 v2.0.0.RELEASE 被撤回。目前问题已修复,官方重新发布了 Spring Boot 2.0,并提供了 Maven 中央仓库地址。

    使用 Spring Boot 2.0.0 GA

    Maven

    <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.0.0.RELEASE</version>
    </parent>
    <dependencies>
    <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    </dependencies>


    Gradle

    dependencies {
    compile("org.springframework.boot:spring-boot-starter-web:2.0.0.RELEASE")
    }


    而 Spring Boot 2.0.1 也被标记为 SNAPSHOT 状态

    Maven

    <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.0.1.BUILD-SNAPSHOT</version>
    </parent>
    <dependencies>
    <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    </dependencies><repositories>
    <repository>
    <id>spring-snapshots</id>
    <name>Spring Snapshots</name>
    <url>https://repo.spring.io/libs-snapshot</url>
    <snapshots>
    <enabled>true</enabled>
    </snapshots>
    </repository>
    </repositories>


    Gradle


    dependencies {
    compile("org.springframework.boot:spring-boot-starter-web:2.0.1.BUILD-SNAPSHOT")
    }repositories {
    maven {
    url 'https://repo.spring.io/libs-snapshot'
    }
    }



    官方表示,这个版本经历了 17 个月的开发,有 215 个不同的使用者提供了超过 6800 次的提交。非常感谢提供贡献的每一位用户,并感谢所有对这些里程碑版本提供重要反馈的早期采用者。

    该版本是自 4 年前发布 Spring Boot 1.0 以来的第一次重大修订,也是首个提供对 Spring Framework 5.0 支持的 GA 稳定版本。

    新版本值得关注的亮点:


    • 基于 Java 8,支持 Java 9


    • 支持 Quartz 调度程序


    • 大大简化了安全自动配置


    • 支持嵌入式 Netty


    • Tomcat, Undertow 和 Jetty 均已支持 HTTP/2


    • 全新的执行器架构,支持 Spring MVC, WebFlux 和 Jersey


    • 使用 Spring WebFlux/WebFlux.fn 提供响应式 Web 编程支持


    • 用于响应式 Spring Data Cassandra, MongoDB, Couchbase 和 Redis 的自动化配置和启动器 POM


    • 启动时的 ASCII 图像 Spring Boot banner 现已支持 GIF

    [​IMG]

    官方新闻:https://spring.io/blog/2018/03/01/spring-boot-2-0-goes-ga
    发布说明:https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-2.0-Release-Notes

    这篇资讯介绍了 Spring Boot 2 中值得关注的新特性:https://www.oschina.net/news/93772/spring-boot-2-0-released-not-yet
    Spring Boot 2.0.0 终于正式发布,重大修订版本下载地址
     
正在加载...