Skip to content

Commit

Permalink
Clarify that converters are for simple values only.
Browse files Browse the repository at this point in the history
Closes #1533
  • Loading branch information
schauder committed Oct 20, 2023
1 parent 7a7d3a3 commit 4ceb982
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/antora/modules/ROOT/pages/jdbc/mapping.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ include::partial$mapping.adoc[]
== Overriding Mapping with Explicit Converters

Spring Data allows registration of custom converters to influence how values are mapped in the database.
Currently, converters are only applied on property-level.
Currently, converters are only applied on property-level, i.e. you can only convert single values in your domain to single values in the database and back.
Conversion between complex objects and multiple columns isn't supported.

[[custom-converters.writer]]
=== Writing a Property by Using a Registered Spring Converter
Expand Down

0 comments on commit 4ceb982

Please sign in to comment.