码迷,mamicode.com
首页 > Web开发 > 详细

Hibernate 异常提示_1

时间:2016-09-15 12:25:38      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

INFO: HHH000041: Configured SessionFactory: null
九月 15, 2016 12:29:35 上午 org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl configure
WARN: HHH000402: Using Hibernate built-in connection pool (not for production use!)

----- 未正确配置 hibernate配置文件--------
参考:
<hibernate-configuration>
<session-factory>
<!--声明方言-->
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<!--数据库驱动-->
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<!--连接数据库的参考-->
<property name="hibernate.connection.url">jdbc:mysql://localhost/hibernatedemo1</property>
<!--数据库用户名和密码-->
<property name="hibernate.connection.password">root</property>
<property name="hibernate.connection.username">root</property>

<property name="hibernate.format_sql">true</property>
<property name="show_sql">true</property>

<property name="hibernate.hbm2ddl.auto">update</property>
<!--关联hbm配置文件-->
<mapping resource="com/watchfree/Model/Course.hbm.xml"/>
<mapping resource="com/watchfree/Model/Student.hbm.xml"/>
</session-factory>
</hibernate-configuration>

Hibernate 异常提示_1

标签:

原文地址:http://www.cnblogs.com/watchfree/p/5874591.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!