-
Notifications
You must be signed in to change notification settings - Fork 584
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dataflow needs to be compilable using boot 3.x #5657
Conversation
Batch removed some methods that are still required by dataflow. Created dataflow version of those classes so that we can implement those methods Added hibernate version Checkpoint for server core and server Updated Skipper components Update classic docs to be restful doc 3.0 compliant
...rc/main/java/org/springframework/cloud/dataflow/server/batch/JobRestartRuntimeException.java
Show resolved
Hide resolved
...ver-core/src/main/java/org/springframework/cloud/dataflow/server/batch/SimpleJobService.java
Outdated
Show resolved
Hide resolved
...ver-core/src/main/java/org/springframework/cloud/dataflow/server/batch/SimpleJobService.java
Outdated
Show resolved
Hide resolved
...ver-core/src/main/java/org/springframework/cloud/dataflow/server/batch/SimpleJobService.java
Show resolved
Hide resolved
...ver-core/src/main/java/org/springframework/cloud/dataflow/server/batch/SimpleJobService.java
Outdated
Show resolved
Hide resolved
...ver-core/src/main/java/org/springframework/cloud/dataflow/server/batch/SimpleJobService.java
Outdated
Show resolved
Hide resolved
...ver-core/src/main/java/org/springframework/cloud/dataflow/server/batch/SimpleJobService.java
Outdated
Show resolved
Hide resolved
...ver-core/src/main/java/org/springframework/cloud/dataflow/server/batch/SimpleJobService.java
Outdated
Show resolved
Hide resolved
...ver-core/src/main/java/org/springframework/cloud/dataflow/server/batch/SimpleJobService.java
Show resolved
Hide resolved
...ver-core/src/main/java/org/springframework/cloud/dataflow/server/batch/SimpleJobService.java
Outdated
Show resolved
Hide resolved
...n/java/org/springframework/cloud/dataflow/server/repository/DataflowSqlPagingQueryUtils.java
Show resolved
Hide resolved
.../main/java/org/springframework/cloud/dataflow/server/service/impl/DefaultTaskJobService.java
Show resolved
Hide resolved
.../main/java/org/springframework/cloud/dataflow/server/service/impl/DefaultTaskJobService.java
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@cppwfs thanks for knocking this out. All my comments are small in nature.
Thank you @cbono!!!!
4315a03
to
1ba1048
Compare
@@ -257,6 +253,11 @@ | |||
<artifactId>postgresql</artifactId> | |||
<scope>test</scope> | |||
</dependency> | |||
<dependency> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍🏻
@@ -108,7 +108,8 @@ public SimpleJobService(SearchableJobInstanceDao jobInstanceDao, SearchableJobEx | |||
this.executionContextDao = executionContextDao; | |||
this.aggregateJobQueryDao = aggregateJobQueryDao; | |||
this.schemaVersionTarget = schemaVersionTarget; | |||
Assert.notNull(this.jobOperator = jobOperator, "jobOperator must not be null"); | |||
Objects.requireNonNull(jobOperator, "jobOperator must not be null"); | |||
this.jobOperator = jobOperator; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Even 1 step further yields...
this.jobOperator = Objects.requireNonNull(jobOperator, "jobOperator must not be null");
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the updates @cppwfs - LGTM
Batch removed some methods that are still required by dataflow.
Removed hibernate version from skipper (use boot's bom)
Updated Skipper so that it is 3.0 compliant.
Update classic docs to be restful doc 3.0 compliant
Disabled CTR, TaskLauncher, SingleStepBatch jobs for this effort. Will need be addressed when worked on.
Work to be done once merged: