org.hibernate.usertype.UserType#org.hibernate.type.CustomType源码实例Demo

下面列出了org.hibernate.usertype.UserType#org.hibernate.type.CustomType 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: lams   文件: Configuration.java
public Configuration registerTypeOverride(UserType type, String[] keys) {
	basicTypes.add( new CustomType( type, keys ) );
	return this;
}
 
源代码2 项目: lams   文件: BasicTypeRegistration.java
public BasicTypeRegistration(UserType type, String[] keys) {
	this( new CustomType( type, keys ), keys );
}