Spring Batch Admin provides a web-based user interface that features an admin console for Spring Batch applications and systems.
Questions tagged [spring-batch-admin]
313 questions
0
votes
1 answer
spring batch does not stop, inner jobs keep runnig
I have nested jobs, main jobs calls many child job and they again call other child jobs. I am using spring batch remote partitioning to partition step execution.
If I stop main job using spring batch admin, it doesn't stop job. All jobs keep…

vishal
- 3,993
- 14
- 59
- 102
0
votes
1 answer
spring batch remote chunking doesn't queue messages but runs it locally?
Below is my configuration for spring batch remote chunking. My steps are running locally instead of remotely. I cant see messages in rabbitmq.

vishal
- 3,993
- 14
- 59
- 102
0
votes
1 answer
SpringBatch in SystemExiter()
I am studying about SpringBatch CommandLineJobRunner. I want to run Multiple Jobs from single job. Here is my code. My code is ok but I do not undersand if CommandLineJobRunner.presetSystemExiter( new SystemExiter() do not include it run only 1…

T8Z
- 691
- 7
- 17
0
votes
0 answers
spring batch admin console which pom to generate war file
I would like to get the spring batch admin console working on my application server. I've just gone to download it from https://github.com/spring-projects/spring-batch-admin/releases.
There are a lot of poms in the project? Which pom is the one I…

Richie
- 4,989
- 24
- 90
- 177
0
votes
1 answer
Running multiple jobs in spring batch admin using REST with same jobname
I am using Spring Batch Admin to run batch jobs for our system. We have to run these jobs many times. I am using the rest interface of spring batch admin. I start a new job using Spring RestTemplate.
RestTemplate tpl = new…

jmclurkin
- 11
- 3
-1
votes
3 answers
FlatFileItemWriter - Writer must be open before it can be written to
I've a SpringBatch Job where I skip all duplicate items write to a Flat file.
However the FlatFileItemWriter throws the below error whenever there's a duplicate:
Writer must be open before it can be written to
Below is the Writer & SkipListener…

Saum
- 35
- 1
- 8
-1
votes
1 answer
nullpointer exception in spring batch service layer is not injected
I am working on Spring Batch with Spring Boot.
I am trying to inject service layer in ItemWriter but it is not working.
I am getting service as null
@Component
public class DataWriter implements ItemWriter {
@Autowired
…

amit
- 11
- 5
-1
votes
1 answer
Spring Batch - Read from FlatFile write Valid into Database and Invalid into FlatFile
I am new to Spring Batch, and trying to read data from FlatFile and writing the valid record into the database and invalid record into cvs file.
I used ClassifierCompositeItemWriter for writing into multiple FlatFile. It was working fine, but the…

Bharath Karna
- 1
- 4
-1
votes
2 answers
process multiple object read through ItemReader at same time(concurrently) with Spring batch
I am trying to read data from the database, and run process on each object concurrently.
My config as below,
@Bean
public Job job() {
return jobBuilderFactory.get("job").incrementer(new RunIdIncrementer()).listener(new Listener(videoDao))
…

inayat Hussain
- 1
- 5
-1
votes
2 answers
Spring Batch Admin
I want to add a new menu to spring batch admin,
I have gone through the docs but not helpful, can anyone please help me with an example also where to put FTL files for that menu.
Thanks in advance
-1
votes
1 answer
How to use Spring Cloud Dataflow to get Spring Batch Status
I have been using Spring Batch and my metadata is in DB2. I have been using Spring Batch admin API (jars) to look at the current status of various jobs and getting details about job, like number of items read, commit count, etc. Now, since Spring…

dish
- 47
- 6
-1
votes
1 answer
Spring Batch Admin Customization Issues with Freemarker Not Picking Up Model Attributes
I am currently trying to extend Spring Batch Admin for an enterprise project. I have the basic SBA setup integrated into my project already but I was looking to add some new features. The feature I am trying to add is one I found online here. One…

themantimes8
- 71
- 10
-2
votes
2 answers
Cannot create JDBC driver of class 'com.ibm.db2.jcc.DB2Driver' for connect URL 'null'
I have used odbc6 driver to connect to the DB2 database. When i try to run job using spring batch i am getting the below error message can some one help me to fix the issue. I am not using any server here, i have included the required jars in the…

Satheesh ponugoti
- 107
- 3
- 7