2

I am working on a application to upgrade it to JAVA 8.

It is using spring integration, spring batch and spring batch admin.

For spring integration and spring batch to work on java 8, we have to upgrade it to latest spring integration which is 4.3.5 (this is what I'm trying to use) and spring batch to 3.0.7.

Problem I am facing is while upgrading SPRING BATCH ADMIN, which was last released in jan 2015 and internally it uses old spring integration version.

Wanted to ask- what are my options as application is very much depending on spring batch admin?

Is there any alternative for spring batch admin which can be used with spring integration 4.3.5 and spring batch 3.0.7.

Need advice and help regarding the same.

Note: I have read somewhere that I can use spring boot admin.

Please let me know if need more clarification on above question. .

ShekharSJ
  • 39
  • 7
  • you could exclude the old dependencies that spring-batch-admin and use the new ones - and see if that works. search for `` maven tags... – Eugene Feb 24 '17 at 09:27
  • @eugene ; I tried using spring batch admin 1.3.1 , but no luck getting runtime error related to tags in XML used in that jars – ShekharSJ Feb 24 '17 at 09:30
  • What platform are you running this on (WebSphere, Tomcat, CloudFoundry, Kubernetes, etc)? – Michael Minella Feb 27 '17 at 15:48
  • @MIchael : we are using weblogic – ShekharSJ Feb 27 '17 at 15:50
  • 1
    I ask because the *best* option is to migrate to Spring Cloud Data Flow... – Michael Minella Feb 27 '17 at 15:52
  • I will have a look on this,. As batch admin is used for UI , so cloud data flow will work with spring batch?? – ShekharSJ Feb 27 '17 at 15:55
  • @Michael Minella : is thr any future release planned for spring batch admin update for java 8. – ShekharSJ Apr 07 '17 at 09:13
  • I would recommend looking at Spring Cloud Data Flow over Spring Batch Admin. – Michael Minella Apr 07 '17 at 14:10
  • 1
    @MichaelMinella : whole application is in spring batch and for UI , batch admin. whats is the possibilities with spring boot admin with spring batch and spring boot ? Please help with any other option if you have :( I hope many people may have similar issue – ShekharSJ Apr 07 '17 at 16:04

2 Answers2

2

Spring Batch Admin project is deprecated. There won't be 2.0.0 release.

Spring Cloud Data Flow isn't direct alternative to Spring Batch Admin. It is about orchestration of processes in cloud environment while Spring Batch Admin is a dashboard for BATCH_ tables, though this functionality is present in Data Flow in its own way ))

UPDATE If you are in 2022, check this de.codecentric:batch-web-spring-boot-starter:

Simeon Leyzerzon
  • 18,658
  • 9
  • 54
  • 82
gavenkoa
  • 45,285
  • 19
  • 251
  • 303
0

This is a fork of spring-batch-admin that might be useful...

https://github.com/httpants/spring-batch-admin

httPants
  • 1,832
  • 1
  • 11
  • 13