使用Hibernate时报hibernate Disabling contextual LOB creation as createClob() method threw error

来源:互联网 发布:环信java需要哪些jar包 编辑:程序博客网 时间:2024/06/18 15:32

使用Hibernate时报hibernate  Disabling contextual LOB creation as createClob() method threw error

这个错误不会影响程序的执行,不用管他也可以。


如下办法可以让他不再报告这个错误:

在hibernate.cfg.xml文件中增加如下配置

<property name="hibernate.temp.use_jdbc_metadata_defaults">false</property>

0 0