JavaBeat

  • Home
  • Java
    • Java 7
    • Java 8
    • Java EE
    • Servlets
  • Spring Framework
    • Spring Tutorials
    • Spring 4 Tutorials
    • Spring Boot
  • JSF Tutorials
  • Most Popular
    • Binary Search Tree Traversal
    • Spring Batch Tutorial
    • AngularJS + Spring MVC
    • Spring Data JPA Tutorial
    • Packaging and Deploying Node.js
  • About Us
    • Join Us (JBC)
  • Privacy
  • Contact Us

Spring Batch 3.0 Release

February 25, 2014 by Krishna Srinivasan Leave a Comment

Today spring has announced the final milestone release for the Spring Batch 3.0. There is no indication of when is the final release will be available for the download. However, early adopters can try out the milestone release as it is available for the download at their web site. You can use the following artifacts for downloading the binaries using Maven setup.

spring-batch

Spring Batch 3 Maven Artifacts

[code lang=”xml”]
<dependencies>
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-core</artifactId>
<version>3.0.0.M3</version>
</dependency>
</dependencies>

<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>http://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>http://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
[/code]

New Features in Spring Batch 3.0

This release completes all the major features included in the Spring Batch 3. The features are:

  • JSR-352 support : This JSR talks about the nature of batch jobs and its execution process. You can read this specification here.
  • Promote Spring Batch Integration to Spring Batch : Spring Batch Integration is a sub-project of Spring Batch Admin. This will be moved to the Spring Batch project.
  • Upgrade to support Spring 4 and Java 8 : This we all aware that Spring framework 4 released and their support upgraded to Java 8.
  • Other fixes and improvements

I will keep update this page when there is news about the spring batch 3.

Filed Under: Spring Framework Tagged With: Spring Batch

About Krishna Srinivasan

He is Founder and Chief Editor of JavaBeat. He has more than 8+ years of experience on developing Web applications. He writes about Spring, DOJO, JSF, Hibernate and many other emerging technologies in this blog.

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Follow Us

  • Facebook
  • Pinterest

As a participant in the Amazon Services LLC Associates Program, this site may earn from qualifying purchases. We may also earn commissions on purchases from other retail websites.

JavaBeat

FEATURED TUTORIALS

Answered: Using Java to Convert Int to String

What is new in Java 6.0 Collections API?

The Java 6.0 Compiler API

Copyright © by JavaBeat · All rights reserved