转载

Spring Cloud Task 2.0.0 发布,升级了所有的依赖关系

Spring Cloud Task 2.0.0.RELEASE 现已正式发布,可从 GitHub 和 Pivotal 仓库下载使用。下面看看该版本有哪些更新内容。

官方表示 Spring Cloud Task 2.0.0.RELEASE 旨在与 Spring Boot 2 保持版本号对齐,自 1.2.x 以来的更新包括:

  • 升级了所有的依赖关系

  • 限制并发任务的执行

  • 执行批处理作业失败时,任务亦失败

有关这些更新的详细描述请查看 https://spring.io/blog/2018/05/07/spring-cloud-task-2-0-0-release-is-now-available

Maven

<dependencies>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-task</artifactId>
        <version>2.0.0.RELEASE</version>
    </dependency>
</dependencies>

源码下载

  • Source code (zip)

  • Source code (tar.gz)

Spring Cloud Task 可让用户使用 Spring Cloud 开发和运行短期微服务,并在云中,甚至在 Spring Cloud 数据流上运行它们。只需添加 @EnableTask 并将你的应用程序作为 Spring Boot 应用程序(单应用程序上下文)运行即可。

原文  https://www.oschina.net/news/95857/spring-cloud-task-2-0-0-released
正文到此结束
Loading...