标签:自己 hiberna reg imp com xml配置 div .config public
出现错误的原因是:hibernate中对于数据库的longtext数据类型不支持。
解决方案:
1、写个类集成方言,然后自己实现对longtext的支持
1 import java.sql.Types; 2 import org.hibernate.dialect.MySQL5Dialect; 3 public class DialectForInkfish extends MySQL5Dialect { 4 public DialectForInkfish() { 5 super(); 6 registerHibernateType(Types.LONGVARCHAR, 65535, "longtext"); 7 } 8 }
2、修改hibernate.cfg.xml配置文件
将<property name="dialect">org.hibernate.dialect.MySQL5Dialect</property> 改为<property name="dialect">com.ibm.crl.inkfish.config.DialectForInkfish</property>
Hibernate映射数据库中longtext类型属性时报错No Dialect mapping for JDBC type: -1的解决方案
标签:自己 hiberna reg imp com xml配置 div .config public
原文地址:https://www.cnblogs.com/lihuibin/p/9736764.html