Add intro sentence

This commit is contained in:
Greg Turnquist 2013-08-08 10:13:42 -05:00
parent 1fd1cfd9a6
commit 5992da45b3
2 changed files with 5 additions and 3 deletions

View File

@ -1,9 +1,10 @@
<#assign project_id="gs-batch-processing">
This guide walks you through creating a basic batch-driven solution.
What you'll build
-----------------
This guide walks you through creating a basic batch-driven solution. You build a service that imports data from a CSV spreadsheet, transforms it with custom code, and stores the final results in a database.
You build a service that imports data from a CSV spreadsheet, transforms it with custom code, and stores the final results in a database.
What you'll need
----------------

View File

@ -1,8 +1,9 @@
This guide walks you through creating a basic batch-driven solution.
What you'll build
-----------------
This guide walks you through creating a basic batch-driven solution. You build a service that imports data from a CSV spreadsheet, transforms it with custom code, and stores the final results in a database.
You build a service that imports data from a CSV spreadsheet, transforms it with custom code, and stores the final results in a database.
What you'll need
----------------
@ -36,7 +37,7 @@ To **skip the basics**, do the following:
<a name="scratch"></a>
Set up the project
------------------
First you set up a basic build script. You can use any build system you like when building apps with Spring, but the code you need to work with [Maven](https://maven.apache.org) and [Gradle](http://gradle.org) is included here. If you're not familiar with either, refer to [Building Java Projects with Maven](/guides/gs/maven/) or [Building Java Projects with Gradle](/guides/gs/gradle/).
First you set up a basic build script. You can use any build system you like when building apps with Spring, but the code you need to work with [Maven](https://maven.apache.org) and [Gradle](http://gradle.org) is included here. If you're not familiar with either, refer to [Building Java Projects with Maven](/guides/gs/maven) or [Building Java Projects with Gradle](/guides/gs/gradle/).
### Create the directory structure