Get ahead
VMware offers training and certification to turbo-charge your progress.
Learn moreWe are pleased to announce that Spring Cloud Task 2.1.0.RELEASE is now available on Github and the Pivotal download repository. Many thanks to all of those who contributed to this release.
Spring Cloud Task 2.1.0.RELEASE is intended to be the version of the framework aligned with Spring Boot 2.1.0. Updates from 2.1.x include:
exitCode
of a TaskExecution
is null
when a task is executing.Let's walk through these updates in more detail.
As stated earlier, this release brings Spring Cloud Task into alignment with Spring Boot 2.1. This includes updating all dependencies.
Auto configuration is now used to create the TaskExplorer
, TaskRepository
, and other beans but does not create the TaskLifecycleListener
(the bean that executes the Spring Cloud Task core functionality). We added this feature to let users who are building their own applications that are not tasks monitor or browse the task repository by using the provided auto configuration. The TaskLifecycleListener
bean is created when a user adds the @EnableTask
to their application or configuration.
exitCode
Is Null When a Task ExecutesIn previous releases of Spring Cloud Task, the TaskExecution
returned from Spring Cloud Task always showed that a running task's exitCode
was 0
. Now the TaskExecution
instances returned from Spring Cloud Task have an exitCode
of null
if the task is still executing.
We look forward to your feedback on these new features in Github, on StackOverflow, Gitter, or directly via Twitter to @michaelminella or @cppwfs!
Spring Cloud Task Home | Source on GitHub | Reference Documentation