File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
jdbc/basics/src/main/java/example/springdata/jdbc/basics/aggregate Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 25
25
import org .springframework .context .annotation .Bean ;
26
26
import org .springframework .context .annotation .Configuration ;
27
27
import org .springframework .core .convert .converter .Converter ;
28
- import org .springframework .data .convert .CustomConversions ;
29
28
import org .springframework .data .jdbc .core .convert .JdbcCustomConversions ;
30
29
import org .springframework .data .jdbc .repository .config .EnableJdbcRepositories ;
31
30
import org .springframework .data .jdbc .repository .config .JdbcConfiguration ;
34
33
35
34
/**
36
35
* @author Jens Schauder
36
+ * @author Mark Paluch
37
37
*/
38
38
@ Configuration
39
39
@ EnableJdbcRepositories
@@ -66,7 +66,7 @@ private void setIds(LegoSet legoSet) {
66
66
}
67
67
68
68
@ Override
69
- protected CustomConversions jdbcCustomConversions () {
69
+ protected JdbcCustomConversions jdbcCustomConversions () {
70
70
71
71
return new JdbcCustomConversions (asList (new Converter <Clob , String >() {
72
72
You can’t perform that action at this time.
0 commit comments