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
DATAJDBC-395 - AbstractJdbcConfiguration no longer registers a bean of type DataAccessStrategy.
This avoids having multiple beans of that type in an ApplicationContext when a custom DataAccessStrategy needs to be provided.
Original pull request: #160.
Copy file name to clipboardExpand all lines: spring-data-jdbc/src/main/java/org/springframework/data/jdbc/repository/config/AbstractJdbcConfiguration.java
Copy file name to clipboardExpand all lines: src/main/asciidoc/jdbc.adoc
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -153,16 +153,16 @@ References between those should be encoded as simple `id` values, which should m
153
153
[[jdbc.entity-persistence.custom-converters]]
154
154
=== Custom converters
155
155
156
-
Custom converters can be registered, for types that are not supported by default, by inheriting your configuration from `JdbcConfiguration` and overwriting the method `jdbcCustomConversions()`.
156
+
Custom converters can be registered, for types that are not supported by default, by inheriting your configuration from `AbstractJdbcConfiguration` and overwriting the method `jdbcCustomConversions()`.
157
157
158
158
====
159
159
[source, java]
160
160
----
161
161
@Configuration
162
-
public class DataJdbcConfiguration extends JdbcConfiguration {
162
+
public class DataJdbcConfiguration extends AbstractJdbcConfiguration {
0 commit comments