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
Copy file name to clipboardExpand all lines: src/main/asciidoc/jdbc.adoc
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -145,6 +145,27 @@ This also means references are 1-1 or 1-n, but not n-1 or n-m.
145
145
If you have n-1 or n-m references, you are, by definition, dealing with two separate aggregates.
146
146
References between those should be encoded as simple `id` values, which should map properly with Spring Data JDBC.
147
147
148
+
=== Custom converters
149
+
Custom coverters can be registered, for types that are not supported by default, by inheriting your configuration from `JdbcConfiguration` and overwriting the method `jdbcCustomConversions()`.
150
+
====
151
+
[source, java]
152
+
----
153
+
@Configuration
154
+
public class DataJdbcConfiguration extends JdbcConfiguration {
0 commit comments