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
For converting the query result into entities the same `RowMapper` is used by default as for the queries Spring Data JDBC generates itself.
165
165
The query you provide must match the format the `RowMapper` expects.
166
166
Columns for all properties that are used in the constructor of an entity must be provided.
167
-
Columns for properties that get set via setter or field access are optional.
167
+
Columns for properties that get set via setter, wither or field access are optional.
168
168
Properties that don't have a matching column in the result will not be set.
169
169
The query is used for populating the aggregate root, embedded entities and one-to-one relationships including arrays of primitive types which get stored and loaded as SQL-array-types.
170
170
Separate queries are generated for maps, lists, sets and arrays of entities.
0 commit comments