LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1894|回复: 3

使用hibernate连接mysql出错

[复制链接]
发表于 2010-6-8 20:44:49 | 显示全部楼层 |阅读模式
hibernate.cfg.xml文件如下:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
        <session-factory>
                <property name="hibernate.connection.driver_class">org.gjt.mm.mysql.Driver</property>
                <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/Sample</property>
                <property name="hibernate.connection.username">solomon</property>
                <property name="hibernate.connection.password">1234</property>
                <property name="hibernate.connection.pool.size">20</property>
                <property name="hibernate.show_sql">true</property>
                <property name="jdbc.fetch_size">50</property>
                <property name="jdbc.batch_size">25</property>
                <property name="jdbc.use_scrollable_resultset">false</property>
                <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
                <property name="connection.useUnicode">true</property>
                <property name="connection.characterEncoding">UTF-8</property>
                <property name="hibernate.jdbc.batch_size">20</property>
                <property name="hibernate.max_fetch_depth">1</property>
                <mapping resource="sample/User.hbm.xml"/>
        </session-factory>
</hibernate-configuration>
当执行session.beginTransaction();时,抛出异常:
Exception in thread "main" org.hibernate.exception.JDBCConnectionException: Cannot open connection
mysql服务已经打开,用户名和密码也没错,请问是mysql配置有问题还是hibernate.cfg.xml有问题?
发表于 2010-6-9 17:50:53 | 显示全部楼层
晕,好多代码,看到真晕
回复 支持 反对

使用道具 举报

 楼主| 发表于 2010-6-11 13:12:01 | 显示全部楼层
看起来很多,其实只是一些标记而已
回复 支持 反对

使用道具 举报

发表于 2010-6-17 13:06:20 | 显示全部楼层
先用jdbc测试下,如果能连接上就是hibernate配置文件不对,看到错误的提示就是不能够打开数据库连接。
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表