使用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&characterEncoding=UTF-8</property> -->
<propert name="connection.url">jdbc:mysql://localhost:3306/hibernate</property>