You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Removed the language of oppression and violence and replaced it with more neutral language.
Note that problematic words in the code have to remain in the docs until the code changes.
Original pull request: #233.
Copy file name to clipboardExpand all lines: src/main/asciidoc/jdbc.adoc
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ Also, things that are really simple conceptually get rather difficult with JPA.
22
22
23
23
Spring Data JDBC aims to be much simpler conceptually, by embracing the following design decisions:
24
24
25
-
* If you load an entity, SQL statements get executed.
25
+
* If you load an entity, SQL statements get run.
26
26
Once this is done, you have a completely loaded entity.
27
27
No lazy loading or caching is done.
28
28
@@ -454,8 +454,8 @@ You can specify the following return types:
454
454
[[jdbc.mybatis]]
455
455
== MyBatis Integration
456
456
457
-
The execution of CRUD operations and query methods can be delegated to MyBatis.
458
-
This section describes how to configure Spring Data JDBC to integrate with MyBatis and which conventions to follow to hand over the execution of the queries as well as the mapping to the library.
457
+
The CRUD operations and query methods can be delegated to MyBatis.
458
+
This section describes how to configure Spring Data JDBC to integrate with MyBatis and which conventions to follow to hand over the running of the queries as well as the mapping to the library.
459
459
460
460
[[jdbc.mybatis.configuration]]
461
461
=== Configuration
@@ -649,7 +649,7 @@ Spring Data JDBC uses the `EntityCallback` API for its auditing support and reac
649
649
650
650
Spring Data JDBC does little to no logging on its own.
651
651
Instead, the mechanics of `JdbcTemplate` to issue SQL statements provide logging.
652
-
Thus, if you want to inspect what SQL statements are executed, activate logging for Spring's {spring-framework-docs}/data-access.html#jdbc-JdbcTemplate[`NamedParameterJdbcTemplate`] or https://www.mybatis.org/mybatis-3/logging.html[MyBatis].
652
+
Thus, if you want to inspect what SQL statements are run, activate logging for Spring's {spring-framework-docs}/data-access.html#jdbc-JdbcTemplate[`NamedParameterJdbcTemplate`] or https://www.mybatis.org/mybatis-3/logging.html[MyBatis].
The preceding causes the `findAll()` method to be executed with a timeout of 10 seconds and without the `readOnly` flag.
675
+
The preceding causes the `findAll()` method to be run with a timeout of 10 seconds and without the `readOnly` flag.
676
676
677
677
Another way to alter transactional behavior is by using a facade or service implementation that typically covers more than one repository. Its purpose is to define transactional boundaries for non-CRUD operations. The following example shows how to create such a facade:
0 commit comments