当前位置: 首页 > 知识库问答 >
问题:

无法在RESOURCE中的第0行和第0列执行解组hibernate.cfg.xml.消息:null

壤驷雅达
2023-03-14

这是我的配置文件hibernate。cfg公司。xml:

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


  <!-- Database connection settings -->
  <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
  <property name="connection.url">jdbc:mysql://localhost:3306/bdd_disc?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT</property>
  <property name="connection.username">root</property>
  <property name="connection.password">MP18711922</property>

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

  <!-- SQL dialect -->
  <property name="dialect">org.hibernate.dialect.MySQLDialect</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>

  <mapping class="org.o7planning.tutorial.hibernate.entities.Artists" />
  <mapping class="org.o7planning.tutorial.hibernate.entities.Disc" />
  <mapping class="org.o7planning.tutorial.hibernate.entities.Song" />

 </session-factory>

</hibernate-configuration>

以及获取SessionFactory的类:

 public class HibernateUtils {

    private static final SessionFactory sessionFactory = buildSessionFactory();

    // Hibernate 5:
    private static SessionFactory buildSessionFactory() {
        try {
            // Create the ServiceRegistry from hibernate.cfg.xml
            ServiceRegistry serviceRegistry = new StandardServiceRegistryBuilder()//
                    .configure("hibernate.cfg.xml").build();

            // Create a metadata sources using the specified service registry.
            Metadata metadata = new MetadataSources(serviceRegistry).getMetadataBuilder().build();

            return metadata.getSessionFactoryBuilder().build();
        } catch (Throwable ex) {

            System.err.println("Initial SessionFactory creation failed." + ex);
            throw new ExceptionInInitializerError(ex);
        }
    }

    public static SessionFactory getSessionFactory() {
        return sessionFactory;
    }

    public static void shutdown() {
        // Close caches and connection pools
        getSessionFactory().close();
    }

}

我收到错误:

原因:组织。冬眠内部的util。配置。ConfigurationException:无法在资源Hibernate中的行号0和列0处执行解组。cfg公司。xml。消息:空

做主要工作的班级是:

私有静态void getTagsFromFile(文件f){

    String artist = null;
    String disc = null;
    String song = null;
    Tag tag = null;
    AudioFile af;
    Artists artistInBase = null;
    Disc discInBase = null;
    Song songInBase = null;

     SessionFactory factory = HibernateUtils.getSessionFactory();
     Session session = factory.getCurrentSession();
       try {

           // All the action with DB via Hibernate
           // must be located in one transaction.
           // Start Transaction.            
           session.getTransaction().begin();

           af = AudioFileIO.read(f);
           tag = af.getTag();
           artist = tag.getFirst(FieldKey.ARTIST);
           artist = artist.replaceAll("'", " ");
           artist = artist.replaceAll("\"", " ");
           disc = tag.getFirst(FieldKey.ALBUM);
           disc = disc.replaceAll("'", " ");
           disc = disc.replaceAll("\"", "'");
           song = tag.getFirst(FieldKey.TITLE);
           song = song.replaceAll("\"", "'");

           int idArtist = -1;
           int idDisc = -1;

           Transaction tx = null;
           try {
               tx = session.beginTransaction();
               String queryAsString = "SELECT artists.name FROM artists WHERE          artists.name LIKE " + "'" + artist + "'";
           Query<Artists> query = session.createQuery(queryAsString);
           List<Artists> artists = query.getResultList();

          if (artists.isEmpty()) {
            artistInBase = new Artists(artist);
            session.save(artistInBase);
            session.flush();
            idArtist = artistInBase.getId();
          }
          else {
            artistInBase = artists.get(0);
            idArtist = artistInBase.getId();
        }
            tx.commit();
        }

        catch (Exception e) {
            if (tx != null)
                tx.rollback();
            e.printStackTrace();
        } finally {
            session.close();
        }
    } catch (CannotReadException | IOException | TagException | ReadOnlyFileException
            | InvalidAudioFrameException e) {
        System.err.println("Cannot parse " + f.getName());
    }

}

共有2个答案

耿俊彦
2023-03-14

好的,我明白了,我的pom。xml有不同版本的hibernate。现在它工作了。

霍财
2023-03-14

我在maven构建生命周期中遇到了类似的问题。如这里所述,我使用了maven插件maven处理器插件。maven日志包含以下警告:

[INFO] --- maven-processor-plugin:3.3.3:process (process) @ orm-project ---
[INFO] diagnostic: Note: Hibernate JPA 2 Static-Metamodel Generator 5.4.12.Final
[WARNING] diagnostic: warning: Unable to parse persistence.xml: Unable to perform unmarshalling at line number 0 and column 0. Message: null

在我切换到maven 3.6.3和JDK 11后,我删除了maven-处理机-plugin并将hibernate-jpamodelgen添加到依赖部分。这解决了警告。静态元模型类仍然生成。

 类似资料:
  • 我尝试使用上下文菜单从listview中删除数据,得到了java.lang.IllegalStateException:Could not read row 0,col 2 from CursorWindow。在从游标访问数据之前,请确保游标已正确初始化。 第一行错误AssignmentRecord.SetAssid(Cursor.GetString(2)); 第二个错误是List records

  • 这是一段相关的代码: 我得到以下例外情况: 第81行第0列第0列的IllegalStateExceptionget字段插槽失败。 如果查询没有返回任何结果(即moveToFirst()为什么为true),有人能解释为什么到达第81行吗?或者有没有其他的解释来解释这个例外? 编辑添加:Android留档在Cursor.moveToFirst()(http://developer.android.co

  • 问题内容: 我有一个奇怪的问题。我收到以下导致强制关闭的错误: org.apache.harmony.xml.ExpatParser $ ParseException:在第1行的第0列:在org.apache.harmony.xml的org.apache.harmony.xml.ExpatParser.parseFragment(ExpatParser.java:508)上找不到任何元素。 org

  • 问题内容: 尝试解码JSON 时出现错误。 我用于API调用的URL在浏览器中可以正常工作,但是通过curl请求完成时会出现此错误。以下是我用于curl请求的代码。 错误发生在 完整回溯: 追溯: 问题答案: 总结评论中的对话: 不需要使用库,Python作为模块包含了相同的库。 无需解码从UTF8到unicode的响应,/ 方法可以本地处理UTF8编码的数据。 有一个非常古老的API。除非您有特

  • 出于某种原因,PHP在我的web服务器上抛出错误,但不是在本地: 现在,第79行的功能如下:

  • 我使用请求来获取和解析使用Scrapy with Scrapyrt(实时刮取)刮取的一些数据。 我是这样做的: 根据Scrapy文档,当参数设置为时,爬行器会自动请求URL并将响应传递给解析方法,解析方法是解析请求时使用的默认方法。 start_requests 类型:布尔型 可选的 spider是否应执行Scrapy.spider.start\u请求方法。在没有ScrapyRT的情况下正常运行S