hibernate使用报错

来源:互联网 发布:淘宝的支付方式 编辑:程序博客网 时间:2024/06/06 06:56

使用hibernate时报如下错误:

十月 31, 2017 11:40:51 下午 org.hibernate.annotations.common.Version <clinit>

INFO: HCANN000001: Hibernate Commons Annotations {4.0.2.Final}

十月 31, 2017 11:40:51 下午 org.hibernate.Version logVersion

INFO: HHH000412: Hibernate Core {4.2.4.Final}

十月 31, 2017 11:40:51 下午 org.hibernate.cfg.Environment <clinit>

INFO: HHH000206: hibernate.properties not found


解决:

(1)将Students.hbm.xml文件放到根目录classpath中

(2)

<!-- <property name="connection.url">jdbc:mysql:///hibernate?useUnicode=true&amp;characterEncoding=UTF-8</property> -->

    <propert name="connection.url">jdbc:mysql://localhost:3306/hibernate</property>

原创粉丝点击