使用环境:
hibernate 4
hibernate中貌似没有sqlite的方言。
网上找到一份。
原地址:http://www.cnblogs.com/dyllove98/archive/2013/08/02/3233835.html
原作者:jlins
打包的下载地址:
原作者说:
=====
在HIbernate4.0版本中
使用Hibernate.STRING 会报错
原因是
NullableType在新版本中已过时
修改为
StandardBasicTypes.STRING
static StringType STRING
Deprecated. Use StandardBasicTypes.STRING instead.
import org.hibernate.type.StandardBasicTypes;!!!!
=====