Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ template.findOne(query(where("name").is("Gandalf")), Person.class);
The javadoc:org.springframework.data.relational.core.query.Query[] returned by the `query` method defines the list of columns to select, a where clause (through a CriteriaDefinition), and specification of limit and offset clauses.
For details of the `Query` class, see its JavaDoc.

The javadoc:org.springframework.data.relational.core.query.Criteria[] class, of which `where` is a static member, provides implementations of org.springframework.data.relational.core.query.CriteriaDefinition[], which represent the where-clause of the query.
The javadoc:org.springframework.data.relational.core.query.Criteria[] class, of which `where` is a static member, provides implementations of javadoc:org.springframework.data.relational.core.query.CriteriaDefinition[], which represent the where-clause of the query.

[[jdbc.criteria]]
include::../commons/criteria-methods.adoc[]
Expand Down
2 changes: 1 addition & 1 deletion src/main/antora/modules/ROOT/pages/jdbc/mapping.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The `com.bigbank.SavingsAccount` class maps to the `SAVINGS_ACCOUNT` table name.
The same name mapping is applied for mapping fields to column names.
For example, the `firstName` field maps to the `FIRST_NAME` column.
You can control this mapping by providing a custom `NamingStrategy`.
See <<mapping.configuration,Mapping Configuration>> for more detail.
See <<mapping.explicit.converters>> for more detail.
Table and column names that are derived from property or class names are used in SQL statements with quotes by default.
You can control this behavior by setting `JdbcMappingContext.setForceQuote(false)`, or use `JdbcMappingContext.forPlainIdentifiers()` to create a context with plain (unquoted) identifiers.

Expand Down
2 changes: 2 additions & 0 deletions src/main/antora/modules/ROOT/pages/r2dbc/mapping.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,8 @@ The mapping metadata infrastructure is defined in the separate `spring-data-comm
Specific subclasses are used in the R2DBC support to support annotation based metadata.
Other strategies can also be put in place (if there is demand).

:mapped-collection: true
:embedded-entities: true
include::partial$mapping.adoc[]

[[mapping.explicit.converters]]
Expand Down
Loading