Update path to macro content

This commit is contained in:
Greg Turnquist 2014-05-05 10:14:04 -04:00
parent ae3ab287da
commit 2fc26b9e3b
1 changed files with 9 additions and 9 deletions

View File

@ -20,19 +20,19 @@ You'll build a service that imports data from a CSV spreadsheet, transforms it w
== What you'll need
include::https://raw.github.com/spring-guides/getting-started-macros/master/prereq_editor_jdk_buildtools.adoc[]
include::https://raw.githubusercontent.com/spring-guides/getting-started-macros/master/prereq_editor_jdk_buildtools.adoc[]
include::https://raw.github.com/spring-guides/getting-started-macros/master/how_to_complete_this_guide.adoc[]
include::https://raw.githubusercontent.com/spring-guides/getting-started-macros/master/how_to_complete_this_guide.adoc[]
[[scratch]]
== Set up the project
include::https://raw.github.com/spring-guides/getting-started-macros/master/build_system_intro.adoc[]
include::https://raw.githubusercontent.com/spring-guides/getting-started-macros/master/build_system_intro.adoc[]
include::https://raw.github.com/spring-guides/getting-started-macros/master/create_directory_structure_hello.adoc[]
include::https://raw.githubusercontent.com/spring-guides/getting-started-macros/master/create_directory_structure_hello.adoc[]
include::https://raw.github.com/spring-guides/getting-started-macros/master/create_both_builds.adoc[]
include::https://raw.githubusercontent.com/spring-guides/getting-started-macros/master/create_both_builds.adoc[]
`build.gradle`
// AsciiDoc source formatting doesn't support groovy, so using java instead
@ -41,7 +41,7 @@ include::https://raw.github.com/spring-guides/getting-started-macros/master/crea
include::initial/build.gradle[]
----
include::https://raw.github.com/spring-guides/getting-started-macros/master/spring-boot-gradle-plugin.adoc[]
include::https://raw.githubusercontent.com/spring-guides/getting-started-macros/master/spring-boot-gradle-plugin.adoc[]
Typically your customer or a business analyst supplies a spreadsheet. In this case, you make it up.
@ -156,12 +156,12 @@ The {EnableAutoConfiguration}[`@EnableAutoConfiguration`] annotation switches on
For demonstration purposes, there is code to create a `JdbcTemplate`, query the database, and print out the names of people the batch job inserts.
include::https://raw.github.com/spring-guides/getting-started-macros/master/build_an_executable_jar_subhead.adoc[]
include::https://raw.githubusercontent.com/spring-guides/getting-started-macros/master/build_an_executable_jar_subhead.adoc[]
include::https://raw.github.com/spring-guides/getting-started-macros/master/build_an_executable_jar_with_both.adoc[]
include::https://raw.githubusercontent.com/spring-guides/getting-started-macros/master/build_an_executable_jar_with_both.adoc[]
:module: batch job
include::https://raw.github.com/spring-guides/getting-started-macros/master/run_the_application_with_both.adoc[]
include::https://raw.githubusercontent.com/spring-guides/getting-started-macros/master/run_the_application_with_both.adoc[]
The job prints out a line for each person that gets transformed. After the job runs, you can also see the output from querying the database.