How to get a stable release of Spring Batch Admin

Here is what I tried on the get started page ...

  • SpringSource Community Download links to a page that doesn't mention Spring Batch Admin. It looks like the original link is either dead, or is now being redirected to something else.

  • I get connection timeouts for the S3Browse App link

  • The process of creating the source code simply fails, and each fix leads to a new failure. Started with missing artifacts / repositories and now looks like Maven 3 vs Maven 2?

  • The maven build process seems to dump the jar instead of war

Google is looking for download links by linking to this page. What am I missing? There must be some kind of public download page from prebuilts.war somewhere.

+7
spring-batch spring-batch-admin
source share
2 answers

If you just want to test the application like me, you can follow these steps:

Check out the source from github at https://github.com/spring-projects/spring-batch-admin . The next step is to go to the spring -batch-admin-sample directory and use maven / jetty to start it.

mvn jetty:run 

Now in your browser follow the link:

http://localhost:8080/spring-batch-admin-sample

+3
source share

My hunch is that the documentation was not updated (sigh).

SNAPSHOT assembly is not something that should be used somewhere serious, except in situations without other ways. Try either 1.2.2.RELEASE (not on github somehy) or 1.2.1.RELEASE.

http://mvnrepository.com/artifact/org.springframework.batch/spring-batch-admin-manager/1.2.2.RELEASE

 <dependency> <groupId>org.springframework.batch</groupId> <artifactId>spring-batch-admin-manager</artifactId> <version>1.2.2.RELEASE</version> </dependency> 

https://github.com/spring-projects/spring-batch-admin/releases

Disclaimer - too lazy to try it myself.

+2
source share

All Articles