Commit Graph

145 Commits

Author SHA1 Message Date
Mahmoud Ben Hassine
8686671615 Fix documentation WRT restarting an abruptly stopped job
Resolves #4037
2022-05-05 18:07:38 +02:00
Xavi Lee
731c270b45 Update copyright date 2022-04-01 16:24:17 +02:00
Rod Lecocq
300baf8df5 Fix doc for schema BATCH_JOB_INSTANCE.JOB_KEY
Fixes #4071
2022-03-08 12:09:33 +01:00
Mahmoud Ben Hassine
9deaa16945 Add example for in-memory job repository with an embedded database
Resolves #4016
2022-02-23 13:47:22 +01:00
Rohit Sanjay
01a80f842e Fix typos in documentation 2022-02-22 13:57:52 +01:00
Sanghyuk Jung
2754018a98 Fix typos in document for configuring steps 2021-08-18 21:30:51 +02:00
dkjeong
654e3d885c Fix typo in documentation
Issue #3907
2021-05-18 11:21:17 +02:00
Taeik Lim
c68c115771 Fix misused 'end()' in examples
`end()` should be used with `FlowJobBuilder`.

Issue #3902
2021-05-18 10:56:34 +02:00
ChangYong
50cd6fe1c9 Fix code examples in documentation
The changed code examples in this commit used the
`.end()` method which does not exist in `SimpleStepBuilder`.

Issue #3889
2021-05-17 20:00:01 +02:00
Rajesh Chandavaram
284b7dcff8 Improve code example in "Configuring and Running a Job" section
The sample that shows how to provide a custom transaction manager
via a BatchConfigurer has been updated to use the constructor
of `DefaultBatchConfigurer` that takes a DataSource.

Issue #3888
2021-05-17 19:43:58 +02:00
Mahmoud Ben Hassine
9bd4b51651 Fix documentation of chunk-oriented processing
Resolves #1629 #1179 #1069 #3833

(cherry picked from commit 3fbfbb9503)
2021-03-11 15:47:35 +01:00
Mahmoud Ben Hassine
b311d8cae7 Fix regression in docs
Master/Slave terms were replaced
with Manager/Worker in 85b3e9002
but this seems to be lost when
merging efdce562b0.
2021-02-24 15:27:31 +01:00
Jay Bryant
68819173b8 Fix for issue #3848
Added the content that didn't get carried forward from 4.2.x.
2021-02-23 12:08:43 +01:00
Mahmoud Ben Hassine
fae6c5b096 Update documentation about step scope usage
Issue #857
2020-10-27 13:13:37 +01:00
Mahmoud Ben Hassine
df89bb69ae Update docs about job scope limitations
Resolves #1335
2020-10-20 12:26:55 +02:00
Mahmoud Ben Hassine
15d24b370f Update documentation with expected configuration to use @SpringBatchTest
Resolves #3699
2020-10-02 23:49:21 +02:00
Mahmoud Ben Hassine
a785c0792a Update testing.adoc
This commit adds the text that was
inadvertently removed in efdce562
2020-10-02 17:17:21 +02:00
Mahmoud Ben Hassine
5c57ed47b8 Update "what's new" section for version 4.3 2020-09-30 16:20:59 +02:00
Mahmoud Ben Hassine
342a1a35dc Document usage of non-identifying job parameters
Resolves #3633
2020-09-24 10:10:29 +02:00
Mahmoud Ben Hassine
5e9d633305 Add section in docs about disabling batch metrics
Resolves #3684
2020-09-23 11:11:15 +02:00
Mahmoud Ben Hassine
90610d5036 Add micrometer metrics tags in reference documentation
Resolves #3751
2020-09-22 11:03:27 +02:00
Harinath Kuntamukkala
d4133de6e0 Update spring-batch-intro.adoc
Added space between to and workflow-driven
2020-08-11 10:35:22 +02:00
Mahmoud Ben Hassine
09646d8938 Update docs
Fix incorrect git meta-data (<<<<<<< HEAD)
introduced mistakenly in efdce56 which was
causing asciidoc warnings
2020-05-29 21:19:54 +02:00
Mahmoud Ben Hassine
58bbc962d5 Polish 1eed5a30c3
* Fix section levels
* Fix typos in code examples
* Minor updates
2020-05-26 12:06:54 +02:00
Dimitrios Liapis
1eed5a30c3 Refactor Item processor documentation
Issue #3644
2020-05-25 23:16:40 +02:00
Charvak Patel
7a775cf2d5 Fix misleading Java Code in documentation
Resolves #3692
2020-05-25 23:02:30 +02:00
Dimitrios (Dimi) Liapis
da2a5da79c Fix typo in documentation
Issue #3643
2020-05-20 12:38:10 +02:00
Mahmoud Ben Hassine
ffd39087a8 Polish efdce562b0
* Fix typos
* Fix formatting issues
2020-05-20 12:15:08 +02:00
Jay Bryant
efdce562b0 Made the "Both" option make sense
I edited the leader paragraphs above each code block that
was flagged as being XML or Java content, such that the
paragraphs make sense when both the XML and the Java blocks
are present. I turned the Both button back on. I also caught
a bunch of other editing things.

Mahmoud Ben Hassine caught a couple of sentences that were
problematic when the Both option is on. I then caught a couple
of other problems. I fixed all of that.

Thanks for reading closely, Mahmoud. I always appreciate that.
2020-05-20 11:28:31 +02:00
Dimitrios Liapis
117b7d5f2d Introduce SynchronizedItemStreamWriter
Issue #842
2020-05-14 00:19:10 +02:00
Jay Bryant
e5cafe4625 Use local storage rather than a cookie
I learnt that local storage is the preferred way to save a user's preferences. A cookie is sent to the server on every request, which makes for needless traffic. I "borrowed" the idea from the Spring Framework docs.
2020-04-17 10:52:25 +02:00
Mahmoud Ben Hassine
9191a72206 Update year in copyright footer 2020-04-17 10:22:48 +02:00
Mahmoud Ben Hassine
6ab141bb44 Fix incorrect description of AggregateItemReader in "Appendix A"
This commit fixes incorrect references to `AggregateItemReader#__$$BEGIN_RECORD$$__`
and `AggregateItemReader#__$$END_RECORD$$__` by updating the description of the
reader with the one in its Javadoc.

It also adds a note that the AggregateItemReader is not part of the standard library
of readers provided by Spring Batch but only given as a sample.

Issue #1793
2020-03-13 11:22:45 +01:00
Michael Minella
d41cd45f90 Updated step.adoc to correctly configure a split 2020-03-09 15:06:42 -05:00
Yanming Zhou
6103fe7306 Update schema-appendix.adoc to fix wrong names
BATCH_EXECUTION_CONTEXT is obsoleted
2020-03-03 12:08:28 +01:00
Wannes
bcc4665faa Update step.adoc
typo in a variable
2020-01-17 12:29:45 +01:00
Mahmoud Ben Hassine
9b5118cb3d Update version in documentation index 2020-01-06 09:32:38 +01:00
Mahmoud Ben Hassine
85a63425b2 Fix typo 2019-11-26 16:33:05 +01:00
Drummond Dawson
53ec8f6084 Polish DocumentToggle.js
* Declare duplicate jQuery selectors as variables
* Remove extra semicolons after function declarations
* Remove leftover jquery.js from Java/XML toggle implementation

When the Java/XML toggle implementation was introduced,
jquery-3.2.1.min.js replaced the old jquery script in toggle.adoc
and the old jquery script was accidentally leftover as a result.
2019-11-26 14:15:36 +01:00
Michal Fotyga
0f9b2e800e Fix typos, code style, trim pictures in docs
And remove unused file
2019-11-26 13:57:56 +01:00
Yanming Zhou
a7bb1ef886 Polishing docs 2019-11-26 13:33:57 +01:00
Mahmoud Ben Hassine
f55d3bc81e Update docs with expected behaviour in regards to skippable exceptions
Before this commit, the expected behaviour when a skippbale exception
occurs in a fault tolerant chunk-oriented step was not documented in
details.

This commit update the docs and adds a sample for each case (when a
skippable exception occurs during read, process and write).

Resolves BATCH-2541
2019-11-25 11:24:21 +01:00
Mahmoud Ben Hassine
33f04a9435 Polish 4ad06b5081 2019-11-15 14:58:55 +01:00
Mahmoud Ben Hassine
3466f32fba Update docs 2019-10-25 17:12:23 +02:00
Mahmoud Ben Hassine
1622a742b1 Add js to redirect old anchors to new ones 2019-10-24 15:45:28 +02:00
Mahmoud Ben Hassine
119ed557a0 Fix typo
Resolves BATCH-2790
2019-10-19 00:32:18 +02:00
Michael Minella
4b9554fcce Polish 2019-08-02 14:33:45 -05:00
Jay Bryant
85b3e90026 Replacing "master" and "slave"
Per a request from Michael Minella, I replaced "master" with "manager" and "slave" with "worker" in the Spring Batch Reference Guide. I heartily concur with replacing terms that have such dark connotations.
2019-08-02 14:33:37 -05:00
Jay Bryant
3f126fe0ff Fixed a refresh bug in the document toggle
While working on another feature, I noticed that the document toggle wasn't updating the ToC. I fixed that. (It matters only in the case where entire headings are toggled, but we do have one such case.)
2019-08-01 09:59:19 -05:00
Mahmoud Ben Hassine
f26165e764 Polish bd53168ddb 2019-07-30 18:02:34 +02:00