|
|
|
@ -68,11 +68,7 @@ public class MyAppConfig extends AbstractR2dbcConfiguration { |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected List<Object> getCustomConverters() { |
|
|
|
protected List<Object> getCustomConverters() { |
|
|
|
|
|
|
|
return List.of(new PersonReadConverter(), new PersonWriteConverter()); |
|
|
|
List<Converter<?, ?>> converterList = new ArrayList<Converter<?, ?>>(); |
|
|
|
|
|
|
|
converterList.add(new org.springframework.data.r2dbc.test.PersonReadConverter()); |
|
|
|
|
|
|
|
converterList.add(new org.springframework.data.r2dbc.test.PersonWriteConverter()); |
|
|
|
|
|
|
|
return converterList; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
---- |
|
|
|
---- |
|
|
|
|