File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
spring-data-jdbc/src/main/java/org/springframework/data/jdbc/core/mapping Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 3131import java .util .Set ;
3232import java .util .UUID ;
3333
34+ import org .springframework .data .jdbc .core .convert .JdbcValue ;
3435import org .springframework .data .mapping .model .SimpleTypeHolder ;
3536
3637/**
3738 * Simple constant holder for a {@link SimpleTypeHolder} enriched with specific simple types for relational database
3839 * access.
3940 *
4041 * @author Mark Paluch
42+ * @author Jens Schauder
4143 */
4244public abstract class JdbcSimpleTypes {
4345
@@ -67,6 +69,7 @@ public abstract class JdbcSimpleTypes {
6769 simpleTypes .add (Time .class );
6870 simpleTypes .add (Timestamp .class );
6971 simpleTypes .add (UUID .class );
72+ simpleTypes .add (JdbcValue .class );
7073
7174 JDBC_SIMPLE_TYPES = Collections .unmodifiableSet (simpleTypes );
7275 }
You can’t perform that action at this time.
0 commit comments