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
5
votes
5 answers
Spring Batch Tables Purging
What is the best way to purge Spring Tables?
Does Spring provides any APIS for purging? or, Do We need to execute delete statements on all Spring Batch Tables?

ram533
- 53
- 1
- 1
- 4
5
votes
2 answers
Spring Batch Admin Manager alternative
Spring Batch Admin Manager implementation is not updated since January 2015.
Is there something else that have to be used instead?
Or should I still use Spring Batch Admin Manager to provide some generic UI for Spring Batch application?

Ivan
- 193
- 3
- 14
5
votes
2 answers
Spring Batch Admin, could not replace placeholder 'batch.business.schema.script'
Trying to add Spring Batch Admin to an existing Spring Batch project.
I have already updated web.xml with spring-batch-admin-resources and spring-batch-admin-manager
My setup:
Under src/main/resources/
I have added 2 properties files. 1 is…

user2712937
- 291
- 3
- 11
5
votes
7 answers
Spring-Batch: How to ensure when a Job is running, it is not allowed to run again at the same time
How to ensure when a Job is running, it is not allowed to run again at the same time?
We have BJ that takes 1 hour to process the feed and populate the temp tables. First step of this BJ is to clear the temp tables and start populating the data…

techanuva
- 219
- 3
- 5
- 16
4
votes
2 answers
Migrating from spring-batch-admin to spring cloud dataflow
We are planning to migrate from spring-batch-admin to spring-cloud-dataflow as batch admin will be moving to into the Spring Attic with an end of life date to be December 31, 2017.
As per the documentation in Migration Doc, “In the Spring Batch…

praveen
- 43
- 1
- 3
4
votes
1 answer
RepositoryItemReader: java.util.ArrayList cannot be cast to org.springframework.data.domain.Page
I'm setting up an ItemRepositoryReader for the reader in a spring batch step. I wanna use findByScenarioBetween method which takes two parameters, min, and max.
My repo
public interface FuneralPricingRepository extends JpaRepository

DIMAKATSO BOPAPE
- 153
- 1
- 2
- 11
4
votes
2 answers
Can't Import properties after integrating spring-batch-admin into existed spring boot
I have worked on a project using spring-batch and spring-boot.
I followed the exact rules how to integrate it by:
1. removing all @EnableBatchProcessing
2. adding ServletConfiguration and WebappConfiguration (and also import them using
@Import({…

rayman
- 20,786
- 45
- 148
- 246
4
votes
1 answer
How can I create and deploy Spring Batch jobs in Spring Batch Admin UI
I have back end Spring experience however, I don't have great experience deploying applications on web containers (for e.g Tomcat). I was able to run Spring Batch Admin using Eclipse STS tools. However, after following this I was somehow confused on…

WowBow
- 7,137
- 17
- 65
- 103
4
votes
1 answer
Adding a filter to the Servlet configuration in Spring Boot
I am using the spring-boot-starter-web bundle to build a spring-batch-admin based webapp.
@Configuration
@EnableAutoConfiguration(exclude = { BatchAutoConfiguration.class, DataSourceAutoConfiguration.class, WebMvcAutoConfiguration.class…

achingfingers
- 1,827
- 5
- 24
- 48
4
votes
1 answer
Spring Batch Admin - Error instantiating Bean 'jobService'
I am using spring-batch-admin-manager-1.2.2.RELEASE along with spring-batch 2.2.3.RELEASE in my project. I am trying to use the spring batch admin console along with my webapp to monitor the batch jobs. When I deploy my web-application on tomcat, I…

Anand
- 1,791
- 5
- 23
- 41
4
votes
2 answers
how to integrate spring batch admin into exisiting maven project
I want to integrate spring batch admin into my existing maven project. Also i want that only one war file should generate that of my existing maven project

Raj
- 165
- 1
- 2
- 11
4
votes
2 answers
Spring Batch - No bean named 'job-configurations' is defined
I am using a custom MVC application that has dependencies on SPring Batch as described in their documentation, and assisted by this SO question Integrating Spring Batch Admin into an existing application.
The trouble now is that as the web-app…

Eddie
- 9,696
- 4
- 45
- 58
3
votes
2 answers
Spring batch application integration with spring batch admin
I developed one spring batch application which is deployed as executable jar using batch/shell script. It works fine.
Now recently I read about spring batch admin application release. As per their doc, they say you have to point to job-context.xml…

javauser2011
- 47
- 1
- 2
- 8
3
votes
1 answer
Embedding Spring Batch Admin with job definitions in Spring Boot app
I've followed an example to get Spring Batch Admin running as a boot app spring-batch-admin-spring-boot
That works as expected. I added a new configuration named BatchConfiguration defined like:
package spring.batch.jobs;
... imports…

novon
- 973
- 3
- 15
- 30
3
votes
1 answer
How to check the status of a spring batch job whether an instance of the job is currently under execution through spring-batch-admin?
I have a requirement where i have created a custom UI for spring-batch monitoring using the spring-batch-admin JSON api. I have a requirement where i dont want to allow the user to start job when an instance of that job is currently under progress.…

user2361591
- 153
- 1
- 14