Skip to content

Commit 38041ac

Browse files
author
Thomas Risberg
committed
fixed duplicate section ids
1 parent 4a3c129 commit 38041ac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spring-framework-reference/src/jdbc.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1368,7 +1368,7 @@ dataSource.setPassword("");</programlisting>
13681368
processing using both the <classname>JdbcTemplate</classname> and the
13691369
<classname>SimpleJdbcTemplate</classname>.</para>
13701370

1371-
<section id="jdbc-advanced-classic">
1371+
<section id="jdbc-batch-classic">
13721372
<title>Basic batch operations with the JdbcTemplate</title>
13731373

13741374
<para>You accomplish <classname>JdbcTemplate</classname> batch
@@ -1418,7 +1418,7 @@ dataSource.setPassword("");</programlisting>
14181418
you to signal the end of the batch.</para>
14191419
</section>
14201420

1421-
<section id="jdbc-advanced-simple">
1421+
<section id="jdbc-batch-list">
14221422
<title>Batch operations with a List of objects</title>
14231423

14241424
<para>Both the <classname>JdbcTemplate</classname> and the
@@ -1489,7 +1489,7 @@ dataSource.setPassword("");</programlisting>
14891489
driver returns a -2 value.</para>
14901490
</section>
14911491

1492-
<section id="jdbc-advanced-simple">
1492+
<section id="jdbc-batch-multi">
14931493
<title>Batch operations with multiple batches</title>
14941494

14951495
<para>The last example of a batch update deals with batches that are so
@@ -1502,7 +1502,7 @@ dataSource.setPassword("");</programlisting>
15021502
<classname>ParameterizedPreparedStatementSetter</classname> to set the
15031503
values for the parameters of the prepared statement. The framework loops
15041504
over the provided values and breaks the update calls into batches of the
1505-
size specified. </para>
1505+
size specified.</para>
15061506

15071507
<para>This example shows a batch update using a batch size of
15081508
100:</para>

0 commit comments

Comments
 (0)