Mahmoud Ben Hassine

Results 121 comments of Mahmoud Ben Hassine

We have the same request for Spring Batch here: https://github.com/spring-projects/spring-batch/issues/3891. While SF was updated to treat MariaDB as an independent database, I believe Batch and Task need a dedicated incrementer...

Hi @pavlo , thank you! I'm glad you like easy rules. The choice of `StandardEvaluationContext` in preference to `SimpleEvaluationContext` is because the `SimpleEvaluationContext` does not fully support SpEL and other...

The default log level used to be `INFO` and was changed to `DEBUG` (see #192 and #166). Are you saying that the default should be `TRACE` and not `DEBUG`? `TRACE`...

The example in my [previous comment](https://github.com/spring-projects/spring-batch/issues/752#issuecomment-566268763) is incorrect, I edited that comment to clarify things. Apologies for the confusion. I believe `setCommand` should accept a vararg of Strings for the...

I do confirm this issue, here is a failing test with v4.3.3: ```java import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.batch.core.ExitStatus; import org.springframework.batch.core.Job; import org.springframework.batch.core.JobExecution; import org.springframework.batch.core.configuration.annotation.EnableBatchProcessing; import org.springframework.batch.core.configuration.annotation.JobBuilderFactory; import...

The dependency to a datasource in `JobRepositoryTestUtils` was removed in #4070. As a result, `SpringBatchTest` should now work with a test context that does not contain a datasource. Closing this...

Thank you for the complete example! Nicely done 👍 However, we prefer to keep the issue tracker exclusively for bug reports and feature requests, see [Getting Help](https://github.com/spring-projects/spring-batch#getting-help). Support requests like...

This is a bug in Spring Batch. The listener is indeed called for the job that finishes earlier with the wrong `JobExecution` instance. Making the `JobExecutionListener` job-scoped does not solve...

@lcmarvin Thank for your feedback and suggestion. > Is it possible to add a command line option like -parameterFile to specify the path of job parameters file? This file could...

Yes, we are intending to address this issue and review the attached PR. > It is not clear to me what the original purpose of the modified bean names "stepScopedTarget.[...]...