oracle 原始数据类型的 java 类型是什么?

What is the java type equivalent for the oracle datatype raw?

在我的 oracle 数据库 table 中有一个数据类型 rawcolumn。现在在我的 spring bean class 中,我想映射这个 table。那么 java datatype 相当于 oracle raw 数据类型吗?

从下面的link,对于JDBC类型应该映射到java.sql.Types.BINARY或者java.sql.Types.VARBINARY,对于[=18]应该映射到byte[] =] 输入:

Oracle Datatype Mappings