欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

hibernate问题备忘

程序员文章站 2024-01-05 13:29:28
...

hibernate中用myeclipse自动生成的hbm映射文件中会有

schema="***" catalog="***"

分别是数据库的实例名和数据库名称,但是实际上jdbc url里已经写明了连接的数据库,所以是不需要的。

同时如果不删除,部署到别的环境中会报错。

 

Caused by: org.hibernate.MappingException: No Dialect mapping for JDBC type: 3  的解决方法:

http://hypgr.iteye.com/blog/259755