当前位置: 首页 > 面试题库 >

Hibernate:文档无效:未找到语法

段干子晋
2023-03-14
问题内容

当我使用以下代码实例化Hibernate时:

        Configuration configuration = new Configuration();
        configuration.configure();
        serviceRegistry = new ServiceRegistryBuilder().applySettings(
                configuration.getProperties()).buildServiceRegistry();
        sessionFactory = configuration.buildSessionFactory(serviceRegistry);

我有以下例外情况:

org.xml.sax.SAXParseException:文档无效:找不到语法。org.xml.sax.SAXParseException:文档根元素“
hibernate-configuration”必须与DOCTYPE根“
null”匹配。引起原因:org.hibernate.MappingException:org.hibernate.cfg.Configuration.configure(Configuration.java:1931)处org.hibernate.cfg.Configuration.doConfigure(Configuration.java:2014)处的配置无效。
cfg.Configuration.configure(Configuration.java:1910)位于com.soccer.system.HibernateUtil。(HibernateUtil.java:23)…
1更多原因:org.xml.sax.SAXParseException:文档无效:无语法找到了。

我在hibernate.cfg.xmlHibernate 4.1.6中使用以下文件

<?xml version='1.0' encoding='utf-8'?>

<hibernate-configuration
    xmlns="http://www.hibernate.org/xsd/hibernate-configuration"
    xsi:schemaLocation="http://www.hibernate.org/xsd/hibernate-configuration hibernate-configuration-4.0.xsd"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <session-factory>
        <!-- Database connection settings -->
        <property name="connection.driver_class">org.apache.derby.jdbc.ClientDriver</property>
        <property name="connection.url">jdbc:derby://localhost:1527/K:\db</property>
        <property name="connection.username"></property>
        <property name="connection.password"></property>

        <!-- JDBC connection pool (use the built-in) -->
        <property name="connection.pool_size">1</property>

        <!-- SQL dialect -->
        <property name="dialect">org.hibernate.dialect.DerbyDialect</property>

        <!-- Enable Hibernate's automatic session context management -->
        <property name="current_session_context_class">thread</property>

        <!-- Disable the second-level cache -->
        <property name="cache.provider_class">org.hibernate.cache.internal.NoCacheProvider</property>

        <!-- Echo all executed SQL to stdout -->
        <property name="show_sql">true</property>

        <!-- Drop and re-create the database schema on startup -->
        <property name="hbm2ddl.auto">update</property>
    </session-factory>
</hibernate-configuration>

我该怎么做才能消除此异常?


问题答案:

添加行

<!DOCTYPE hibernate-configuration PUBLIC
      "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
      "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd" >

作为第二行(在xml版本之后和<hibernate-configuration>标记之前。然后应该可以使用。)



 类似资料:
  • 我检查以确保SDK找到SDK中包含的证书。所以我猜这是一个无效的证书。我现在不知道该怎么做了。有人知道如何解决这个问题吗?

  • 我使用springboot和maryadb数据库进行训练。当我测试数据恢复时,我在邮递员中收到这样一条消息: 。我在复制粘贴中尝试了几个教程,我总是有相同的消息。我也会把控制台中的消息。提前谢谢你的帮助。 控制器 服务 回应的 模型 应用属性 安慰

  • 当我试图从数据库中提取数据时,会出现这种类型的错误。MyBatis无法识别我的映射器xml文件,接口映射器和xml映射器具有相同的文件名和相同的目录。但是,当我使用此批注时,它可以工作我不想使用@select批注,而是想使用我的映射器xml文件。有人有办法解决这个问题吗??我使用的是Gradle(最新)、Java15和SpringBoot2.4.1 null

  • 我无法理解为什么当我通过的文本符合格式时,我会得到DateTimeParseException错误。下面是导致该问题的代码: 奇怪的是。每当我查询用户一段时间(让我们以00:02:30为例),它就会完全按照我想要的方式运行。但是当我使用我的方法(从文本文件中提取时间)时,它会出现错误: 线程“main”java.time.format.DateTimeParseException中出现异常:无法分

  • Hibernate 是一个开放源代码的对象关系映射框架,它对JDBC进行了非常轻量级的对象封装,它将POJO与数据库表建立映射关系,是一个全自动的orm框架,hibernate可以自动生成SQL语句,自动执行,使得Java程序员可以随心所欲的使用对象编程思维来操纵数据库。

  • 我使用的是NetBeans IDE 8.2。这是我正在使用的代码: 加载到cats阵列中的图像位于名为“img”的src文件夹中,编号为1-6。当我从NetBeans IDE运行程序时,它运行得非常完美;然而,当我试图在构建项目后创建的dist文件夹中执行JAR文件时,它根本不会运行。当我尝试使用命令行运行它时,我得到以下结果: 我假设问题是JAR文件无法访问图像文件,但我不知道如何修复它。如何将