问答详情
源自:1-11 通过Hibernate API编写访问数据库的代码

执行测试文件时异常,控制台没报错,但是报hibernate.properties not found

六月 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


提问者:烟焚散人亦牵绊_0 2018-06-15 16:50

个回答

  • 春风又绿江南岸_
    2020-06-10 21:04:14

    一、如果hibernate.cfg.xml配置文件没有错的话(1、包括一些转义字符有没有区分,主要在数据库连接那一项的jdbc:mysql://localhost:3306/hibernate_day01?useSSL=false&amp;serverTimezone=UTC其中'&'要写成‘&amp’;2、右键,选择preferences查看文本编码格式是不是utf-8;)。

    二、检查完hibernate.cfg.xml文件没问题还无法解决那就很大原因是jdk版本问题,先试试用jdk1.8,不行再试试更低版本的


  • 慕粉15135127945
    2018-09-23 18:25:03

    jdk用的哪个版本 1.8试一试,

  • 烟焚散人亦牵绊_0
    2018-06-17 14:38:00

    <?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>

    应该不是配置的问题哟

  • qq_林_21
    2018-06-16 16:12:23

    你*.cfg.xml配置有没有问题啊