六月 15, 2018 4:47:51 下午 org.hibernate.Version logVersion
INFO: HHH000412: Hibernate Core {5.3.0.Final}
六月 15, 2018 4:47:51 下午 org.hibernate.cfg.Environment <clinit>
INFO: HHH000206: hibernate.properties not found
org.hibernate.internal.util.config.ConfigurationException: Unable to perform unmarshalling at line number 0 and column 0 in RESOURCE hibernate.cfg.xml. Message: null
java. lang .Null Pointer Exception
at StudentsTest.destory(StudentsTest.java:34)
. unmarshal exception
一、如果hibernate.cfg.xml配置文件没有错的话(1、包括一些转义字符有没有区分,主要在数据库连接那一项的jdbc:mysql://localhost:3306/hibernate_day01?useSSL=false&serverTimezone=UTC其中'&'要写成‘&’;2、右键,选择preferences查看文本编码格式是不是utf-8;)。
二、检查完hibernate.cfg.xml文件没问题还无法解决那就很大原因是jdk版本问题,先试试用jdk1.8,不行再试试更低版本的
jdk用的哪个版本 1.8试一试,
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!-- hibernate.connection.driver_class : 连接数据库的驱动 -->
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<!-- hibernate.connection.username : 连接数据库的用户名 -->
<property name="hibernate.connection.username">root</property>
<!-- hibernate.connection.password : 连接数据库的密码 -->
<property name="hibernate.connection.password">password</property>
<!-- hibernate.connection.url : 连接数据库的地址,路径 -->
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/demo1?useUnicode=true&characterEncoding=gbk&useSSL=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=Hongkong</property>
<!-- 数据库方言配置 org.hibernate.dialect.MySQLDialect (选择最短的)-->
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<!-- show_sql: 操作数据库时,会 向控制台打印sql语句 -->
<property name="show_sql">true</property>
<!-- format_sql: 打印sql语句前,会将sql语句先格式化 -->
<property name="format_sql">true</property>
<!-- 指定hibernate启动的时候自动创建表结构creat--update -->
<property name="hbm2ddl.auto">create</property>
<mapping resource="Students.hbm.xml"/>
</session-factory>
</hibernate-configuration>
应该不是配置的问题哟
你*.cfg.xml配置有没有问题啊