Skip to content

Commit 87d6b52

Browse files
committed
JdbcCustomConversion does not reject non-Date related default converters.
Previously, JdbcCustomConversion rejected any default converter that was not converting from and to java.util.Date. This probably stemmed from the fact that up until recently, Spring Data Commons' CustomConversions only registered date related default converters. As of spring-projects/spring-data-commons#2315 we also support jMolecules' Association and Identifier converters. We've relaxed the rejection to only explicitly reject all non Date/Time related converters if the conversion is from/to java.util.Date but allow everything else out of the box.
1 parent 0058752 commit 87d6b52

File tree

3 files changed

+49
-5
lines changed

3 files changed

+49
-5
lines changed

spring-data-jdbc/pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,12 @@
257257
<scope>test</scope>
258258
</dependency>
259259

260+
<dependency>
261+
<groupId>org.jmolecules.integrations</groupId>
262+
<artifactId>jmolecules-spring</artifactId>
263+
<version>${jmolecules-integration}</version>
264+
<scope>test</scope>
265+
</dependency>
260266

261267
</dependencies>
262268

spring-data-jdbc/src/main/java/org/springframework/data/jdbc/core/convert/JdbcCustomConversions.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ public JdbcCustomConversions(ConverterConfiguration converterConfiguration) {
6969

7070
private static boolean isDateTimeApiConversion(ConvertiblePair cp) {
7171

72-
if (cp.getSourceType().equals(java.util.Date.class) && cp.getTargetType().getTypeName().startsWith("java.time.")) {
73-
return true;
72+
if (cp.getSourceType().equals(java.util.Date.class)) {
73+
return cp.getTargetType().getTypeName().startsWith("java.time.");
7474
}
7575

76-
if (cp.getTargetType().equals(java.util.Date.class) && cp.getSourceType().getTypeName().startsWith("java.time.")) {
77-
return true;
76+
if (cp.getTargetType().equals(java.util.Date.class)) {
77+
return cp.getSourceType().getTypeName().startsWith("java.time.");
7878
}
7979

80-
return false;
80+
return true;
8181
}
8282
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/*
2+
* Copyright 2021 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package org.springframework.data.jdbc.core.convert;
17+
18+
import static org.assertj.core.api.Assertions.*;
19+
20+
import org.jmolecules.ddd.types.Association;
21+
import org.junit.jupiter.api.Test;
22+
23+
/**
24+
* Unit tests for {@link JdbcCustomConversions}.
25+
*
26+
* @author Oliver Drotbohm
27+
*/
28+
class JdbcCustomConversionsUnitTests {
29+
30+
@Test
31+
void registersNonDateDefaultConverter() {
32+
33+
JdbcCustomConversions conversions = new JdbcCustomConversions();
34+
35+
assertThat(conversions.hasCustomWriteTarget(Association.class)).isTrue();
36+
assertThat(conversions.getSimpleTypeHolder().isSimpleType(Association.class));
37+
}
38+
}

0 commit comments

Comments
 (0)