今天 把项目从hibernate3升级到4的时候报错: Disabling contextual LOB creation as createClob() method threw error : java.lang.reflect.InvocationTargetException
错误原因分析:
可能是里面多了没有用的MySQL 的驱动包 ,现在用的是oracle数据库,删了就好了
在applicationContext.xml 里面配置
<prop key="hibernate.temp.use_jdbc_metadata_defaults">false</prop>
可以避免启动容器时报的一个错误:
Disabling contextual LOB creation as createClob() method threw error : java.lang.reflect.InvocationTargetException
添加这一行的原因:参考网络是这样的
具体原因还在探索中,
转载于:https://blog.51cto.com/wenrouyidao/1587070