Add project page
This commit is contained in:
committed by
Phillip Webb
parent
171918e41a
commit
3bbd155657
10
_config.yml
10
_config.yml
@@ -10,20 +10,20 @@ redcarpet:
|
||||
### The following properties will change on a project-by-project basis
|
||||
|
||||
# Context path in the remote website (usually /<project>), will be prepended to absolute URLs for static resources
|
||||
baseurl: /gh-pages
|
||||
baseurl: /spring-batch
|
||||
|
||||
# Name of the project for display in places like page titles
|
||||
name: Spring Framework
|
||||
name: Spring Batch
|
||||
|
||||
# ID of the project in the metadata API at spring.io (if this is not a
|
||||
# valid project ID the javascript widgets in the home page will not work)
|
||||
project: spring-framework
|
||||
project: spring-batch
|
||||
|
||||
# Project github URL
|
||||
github_repo_url: http://github.com/spring-projects/spring-framework
|
||||
github_repo_url: https://github.com/spring-projects/spring-batch.git
|
||||
|
||||
# Project forum URL
|
||||
forum: http://forum.spring.io/forum/spring-projects/container
|
||||
forum: http://forum.spring.io/forum/spring-projects/batch
|
||||
|
||||
|
||||
### The following properties are constant for most projects
|
||||
|
||||
3
_includes/build.gradle
Normal file
3
_includes/build.gradle
Normal file
@@ -0,0 +1,3 @@
|
||||
dependencies {
|
||||
compile '{@= groupId @}:spring-batch-core:{@= version @}'
|
||||
}
|
||||
18
_includes/pom.xml
Normal file
18
_includes/pom.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>{@= groupId @}</groupId>
|
||||
<artifactId>spring-batch-core</artifactId>
|
||||
<version>{@= version @}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
{@ if (repository) { @}
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>{@= repository.id @}</id>
|
||||
<name>{@= repository.name @}</name>
|
||||
<url>{@= repository.url @}</url>
|
||||
<snapshots>
|
||||
<enabled>{@= repository.snapshotsEnabled @}</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repositories>{@ } @}
|
||||
BIN
img/project-icon-large.png
Normal file
BIN
img/project-icon-large.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
95
index.html
Normal file
95
index.html
Normal file
@@ -0,0 +1,95 @@
|
||||
---
|
||||
# The name of your project
|
||||
title: Spring Batch
|
||||
|
||||
badges:
|
||||
|
||||
|
||||
# Customize your project's badges. Delete any entries that do not apply.
|
||||
custom:
|
||||
- name: Source (GitHub)
|
||||
url: https://github.com/spring-projects/spring-batch
|
||||
icon: github
|
||||
|
||||
- name: Issues (JIRA)
|
||||
url: http://jira.springsource.org/browse/BATCH
|
||||
icon: tracking
|
||||
|
||||
- name: CI (Bamboo)
|
||||
url: https://build.springsource.org/browse/BATCH
|
||||
icon: ci
|
||||
|
||||
- name: Forum
|
||||
url: http://forum.spring.io/forum/spring-projects/batch
|
||||
icon: forum
|
||||
|
||||
- name: StackOverflow
|
||||
url: http://stackoverflow.com/questions/tagged/spring-batch
|
||||
icon: stackoverflow
|
||||
|
||||
- name: Metrics (SonarQube)
|
||||
url: https://sonar.springsource.org/dashboard/index/org.springframework.batch:spring-batch
|
||||
icon: metrics
|
||||
|
||||
---
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en-US">
|
||||
|
||||
{% capture billboard_description %}
|
||||
|
||||
A lightweight, comprehensive batch framework designed to enable the development of robust batch applications vital for the daily operations of enterprise systems.
|
||||
|
||||
{% endcapture %}
|
||||
|
||||
{% capture main_content %}
|
||||
|
||||
Spring Batch provides reusable functions that are essential in processing large volumes of records, including logging/tracing, transaction management, job processing statistics, job restart, skip, and resource management. It also provides more advanced technical services and features that will enable extremely high-volume and high performance batch jobs through optimization and partitioning techniques. Simple as well as complex, high-volume batch jobs can leverage the framework in a highly scalable manner to process significant volumes of information.
|
||||
|
||||
## Features
|
||||
|
||||
* Transaction management
|
||||
* Chunk based processing
|
||||
* Declaritive I/O
|
||||
* Start/Stop/Restart
|
||||
* Rety/Skip
|
||||
* Web based administration interface (Spring Batch Admin)
|
||||
|
||||
<span id="quick-start"></span>
|
||||
## Quick Start
|
||||
|
||||
{% include download_widget.md %}
|
||||
|
||||
The quickest way to get started with Spring Batch is to download the zip file and use one of the shell projects we provide.
|
||||
|
||||
## XML based configuration
|
||||
1. Download the zip release from our repository: [Download](http://static.springsource.org/downloads/nightly/release-download.php?project=BATCH)
|
||||
2. After unzipping the download, copy the /samples/spring-batch-simple-cli folder to your workspace.
|
||||
3. From the root of you new project's directory, you can build the project via maven `mvn clean install`
|
||||
4. From the project's target directory, you'll be able to run your new job (pipes a file into an in memory database table) via the command `java -jar spring-batch-simple-cli-2.2.1.RELEASE.jar launch-context.xml personJob`
|
||||
|
||||
## Java based configuration (3.0+)
|
||||
1. Download the zip release from our repository: [Download](http://static.springsource.org/downloads/nightly/milestone-download.php?project=BATCH)
|
||||
2. After unzipping the download, copy the /samples/spring-batch-simple-cli-javaconfig folder to your workspace.
|
||||
3. From the root of you new project's directory, you can build the project via maven `mvn clean install`
|
||||
4. From the project's target directory, you'll be able to run your new job (pipes a file into an in memory database table) via the command `java -jar spring-batch-simple-cli-3.0.0.M1.jar example.LaunchContext personJob`
|
||||
|
||||
{% endcapture %}
|
||||
|
||||
{% capture related_resources %}
|
||||
|
||||
### Getting Started Guides
|
||||
|
||||
* [Creating a Batch Service]({{site.main_site_url}}/guides/gs/batch-processing)
|
||||
* [Spring Batch Getting Started](http://docs.spring.io/spring-batch/getting-started.html)
|
||||
|
||||
### Related Projects
|
||||
|
||||
* [Spring Integration]({{site.projects_site_url}}/spring-integration/)
|
||||
* [Spring Data]({{site.projects_site_url}}/spring-data/)
|
||||
|
||||
{% endcapture %}
|
||||
|
||||
|
||||
{% include project_page.html %}
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user