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
Unable to start a spring boot web application with spring batch admin
I am trying to run a web application with embedded tomcat including a number of spring batch jobs and the spring batch admin. However when I try to run the generated fat jar I get the following error, can anybody from spring batch or boot team…

Anoop Gopalakrishnan
- 63
- 6
0
votes
0 answers
Autowiring of Spring Data Repo fails with Maven Skinny war option
My question is similar to this one posted a while ago
The autowiring of Spring Data Repos fail when the external libraries are in EAR's lib folder.
The wiring works fine when all jars are included in WEB-INF/lib.
I tried setting the 'skinnyWar' to…

patb23
- 387
- 5
- 21
0
votes
2 answers
Spring Batch Admin Config Throw ClassNotFoundException
I am unable to configure Spring Batch Admin 1.3.0
I have overridden the data source defaults but I keep getting all kinds of errors.
The last one has to do with ClassNotFoundException.
Caused by: java.lang.ClassNotFoundException:…
0
votes
1 answer
Can Spring Batch Admin automatically launch a job on startup?
I have placed my job xml in the spring/batch/jobs directory and can launch the job from the console by clicking on the launch button. I would like to have the job launch whenever the Tomcat instance where the admin console is deployed starts up. …

Richard Atwood
- 1
- 1
0
votes
1 answer
Spring-Boot Webapp with multiple JTA databases throws BeanCreationException
I am migrating an existing Spring-Batch command line app to a webapp using spring-boot-starter-web and spring-boot-starter-data-jpa together with the spring-batch-admin (version 1.3.0).
I tried to configure the application so that it can work with…

achingfingers
- 1,827
- 5
- 24
- 48
0
votes
1 answer
Spring Batch Admin - missing resources
I'm using the latest Spring Batch Admin (1.3.0.RELEASE) and am including the 'admin-manager' and 'admin-resources' in my WAR artifact pom file.
....
…

emeraldjava
- 10,894
- 26
- 97
- 170
0
votes
1 answer
Spring Batch Job throws NoSuchMethodError: BinaryExceptionClassifier.classify(Throwable) : Boolean
I am using Springframwork 4.0.6 with Spring-Batch 3.0.1 and got a weird NoSuchMethodError when executing the job from within Spring-Batch-Admin (version 1.3.0). I think it might be a versioning problem:
2014-09-04 15:57:03.664 ERROR 7780 ---…

achingfingers
- 1,827
- 5
- 24
- 48
0
votes
1 answer
Spring Batch : Difference between spring batch admin and command line when jobs are run in parallel
When I run spring batch jobs in parallel using 'Split flow', I found that there are differences between spring batch admin and command line.
I have a job flow as the following:
Job1 -> Job2 -> Job3
-> Job4
When I run these jobs from spring…

nnt
- 97
- 1
- 11
0
votes
1 answer
Spring Batch Admin - Not showing JSON endpoints
On the Spring Batch Admin JSON API Guide I read that:
"Spring Batch Admin can act as a JSON web service. All the main HTML
UI features can be accessed by JSON clients. In general, the recipe
for doing this is to take a normal HTML URL from the…

user1821021
- 35
- 6
0
votes
1 answer
Unable to start spring-batch-admin application
I have a spring batch admin application, where i have job xmls in META-INF/spring/jobs/ folder.
The job initialization fails with below error..
If i change the jobs folder to something say "bootstrap"...the application works..but with jobs not being…

Thrinath Dosapati
- 195
- 2
- 11
0
votes
1 answer
How to launch spring batch remote partitioned job through cron?
I am using spring batch and spring batch admin for our daily batch processing work. I have tested it using tomcat 7 by launching jobs through spring batch admin UI.
My job has remote partitioned steps which runs across different servers, I am using…

vishal
- 3,993
- 14
- 59
- 102
0
votes
1 answer
Spring-Batch:Skip records from reading
Trying to read data from flat file where I need to skip invalid records inside reader.
How can this be achieved?
Issue: when I return null from T doRead() method for invalid record it stops reading file from there on.
Any help here appreciated.

Bhavesh
- 519
- 6
- 26
0
votes
2 answers
Spring batch admin remote partition steps running maximum 8 threads even though concurrency is 10?
I am using spring batch remote partitioning for batch process. I am launching jobs using spring batch admin.
I have inbound gateway consumer concurrency step to 10 but maximum number of partitions running in parallel are 8.
I want to increase the…

vishal
- 3,993
- 14
- 59
- 102
0
votes
1 answer
404 error on clicking job link on springbatch admin ui
I am new to springbatch. I am trying to create a batch application and integrate with batch admin ui. Versions I used are spring-batch-2.2.7 and spring-batch-admin-1.3.0.M1. I am able to run my job using junit and also able to see all my jobs on…

user2138493
- 135
- 1
- 5
0
votes
1 answer
How to handle FlatFileItemReader exception when resource is not available to call other step and retry same step which threw exception?
I am using spring batch remote partitioning. My first step prepares input files for all other steps. Other steps process input files.
To create input files on all 4 servers, my fist step should run on all servers. So I have set up consumer…

vishal
- 3,993
- 14
- 59
- 102