MyEclipse+hibernate错误:Could not get list of suggested identity strategies from d

错误:

Problem Occurred
Generating Artifacts(Time of error : November 8,2009 6:54:39 PM GMT+08:00)
Reason:
Could not get list of suggested identity strategies from database. Probably a JDBC driver problem.

 

过程:

使用MyEclipse Database Explorer反转工程(Hibernate Reverse Engineering)自动生成Hibernate时,出现这个错误。

 

原因及解决:

参考了一些相关文章后,发现数据源配置为jdbc:mysql://localhost:3306是有问题的,虽然测试连接时是通过的。后来把数据源配置为jdbc:mysql://localhost:3306/database,database为我的数据库名,

将数据源的Connection URL指定为具体的数据库。修改后就没有出现错误信息了。

你可能感兴趣的:(Hibernate,mysql,jdbc,MyEclipse)