标签:hibernate mysql native hql 方言
hibernate中对于数据库的Text数据类型不支持。是hibernate与mysql的jdbc驱动配合上出现了问题:对于 mysql text类型jdbc ResultSetMetaData.getColumnType 返回-1 ,而hibernate没有注册该类型,所以导致createSQLQuery 报 No Dialect mapping for JDBCtype: -1。
解决方法:
1、写个类集成方言,然后自己实现对text的支持
import java.sql.Types; import org.hibernate.dialect.MySQL5Dialect; public class DialectForInkfish extends MySQL5Dialect { public DialectForInkfish() { super(); registerHibernateType(Types.LONGVARCHAR, 65535, "text"); } }
修改Hibernate配置文件hibernate.cfg.xml,把
<property name="dialect">org.hibernate.dialect.MySQL5Dialect</property>修改为:
<property name="dialect">com.ibm.crl.inkfish.config.DialectForInkfish</property>
hibernate中对于数据库的Text注解出现 No Dialect mapping for JDBC type: -1解决方法
标签:hibernate mysql native hql 方言
原文地址:http://blog.csdn.net/zhao50632/article/details/42496257