typename 可以是如下几种:
-
Hibernate 基本类型名(比如:
integer, string, character,date, timestamp, float, binary, serializable, object, blob
)。 -
一个 Java 类的名字,这个类属于一种默认基础类型(比如:
int, float,char, java.lang.String, java.util.Date, java.lang.Integer, java.sql.Clob
)。 -
一个可以序列化的 Java 类的名字。
-
一个自定义类型的类的名字。(比如:
com.illflow.type.MyCustomType
)。