【发布时间】:2013-05-11 04:36:45
【问题描述】:
您好先生,我是hibernate的新手...我的hibernate配置文件如下所示
<?xml version='1.0' encoding='utf-8'?>
<session-factory>
<property name="hibernate.connection.driver_class" >org.gjt.mm.mysql.Driver</property>
<property name="hibernate.connection.url" >jdbc:mysql://localhost/emp</property>
<property name="hibernate.connection.username" >root</property>
<property name="hibernate.connection.password" >root</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="show_sql">true</property>
<mapping resource="Employee.hbm.xml" />
</session-factory>
</hibernate-configuration>
我收到一条错误消息,例如“没有到主机的路由:连接” 我无法修复我的错误。请帮帮我先生
【问题讨论】:
标签: xml hibernate orm configuration