引发该异常的原因:hibernate对于有些数据类型不识别
解决方案:自定义一个hibernate.dialect方言
package com.yourcompany.util ;
import java.sql.Types;
import org.hibernate.Hibernate;
import org.hibernate.dialect.MySQL5Dialect;
public class CustomDialect extends MySQL5Dialect {
public CustomDialect() {
super();
registerHibernateType(Types.DECIMAL, Hibernate.BIG_DECIMAL.getName());
registerHibernateType(-1, Hibernate.STRING.getName());
}
}
然后在hibernate配置文件中配置
<property name="hibernate.dialect">
com.yourcompany.CustomDialect
</property>
说明: 如果你的数据库是mysql,而又用了decimal类型,报错应该是 No Dialect mapping for JDBC type: 3 . 注意这个3,
它说明hibernate不能将这种数据类型映射到你的java类中. 就需要在自定义的方言中用到:
registerHibernateType(Types.DECIMAL, Hibernate.BIG_DECIMAL.getName());
如果你用了text数据类型,hibernate根本就不认识这种数据类型,所以会返回No Dialect mapping for JDBC type: -1
. 这样的话,就需要在方言中加入:
registerHibernateType(-1, Hibernate.STRING.getName());
这样之后问题就解决了。