gpt4 book ai didi

java - 使用 hibernate 连接数据库时出错

转载 作者:行者123 更新时间:2023-11-30 07:49:25 28 4
gpt4 key购买 nike

我正在尝试使用 hibernate 在我的数据库上创建一个表。这是我的代码

java对象

包 com.digitek.students;

import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;

@Entity
@Table(name="studentInfo")
public class StudentInfo {

@Id
private int rollNo;
public int getRollNo() {
return rollNo;
}
public void setRollNo(int rollNo) {
this.rollNo = rollNo;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
private String name;
}

数据访问对象

package com.digitek.students;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;

public class Main {

public static void main(String[] args){

StudentInfo student = new StudentInfo();
student.setName("Rishit");
student.setRollNo(47);

SessionFactory sf = new Configuration().configure().buildSessionFactory();
Session session = sf.openSession();
session.beginTransaction();
session.save(student);
session.getTransaction().commit();
session.close();
sf.close();

}
}

这是我的 hibernate.config.xml 文件

> <?xml version='1.0' encoding='utf-8'?> <!--   ~ Hibernate, Relational
> Persistence for Idiomatic Java ~ ~ License: GNU Lesser General
> Public License (LGPL), version 2.1 or later. ~ See the lgpl.txt file
> in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
> --> <!DOCTYPE hibernate-configuration PUBLIC
> "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
> "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
>
> hibernate-configuration>
>
> <session-factory>
>
> <!-- Database connection settings -->
> <!-- <property name="connection.driver_class">org.hsqldb.jdbcDriver</property>
> <property name="connection.url">jdbc:hsqldb:hsql://localhost/TestDB</property>
> -->
>
> <property name="connection.driver_class">org.mysql.Driver</property>
> <property name="connection.url">jdbc:mysql://localhost:3306/hibernatetutorials</property>
> <property name="connection.username">root</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.MySQLDialect
> </property>
>
> <!-- Enable Hibernate's automatic session context management -->
> <property name="current_session_context_class">thread</property>
>
> <property name="cache.use_query_cache">true</property>
> <property name="cache.use_second_level_cache">true</property>
> <property name="cache.use_structured_entries">true</property>
> <property name="cache.region.factory_class">org.hibernate.cache.EhCacheRegionFactory</property>
> <property name="net.sf.ehcache.configurationResourceName">/hibernate-config/ehcache.xml</property>
>
> <!-- Disable the second-level cache -->
> <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
>
> <!-- Echo all executed SQL to stdout -->
> <property name="show_sql">true</property>
>
> <!-- Drop all existing tables and create new ones -->
> <property name="hbm2ddl.auto">create</property>
>
> <mapping class="com.digitek.students.StudentInfo"/>
>
> </session-factory>
>
> </hibernate-configuration>

错误信息

Nov 02, 2015 11:02:26 AM org.hibernate.Version logVersion
INFO: HHH000412: Hibernate Core {5.0.2.Final}
Nov 02, 2015 11:02:26 AM org.hibernate.cfg.Environment <clinit>
INFO: HHH000206: hibernate.properties not found
Nov 02, 2015 11:02:26 AM org.hibernate.cfg.Environment buildBytecodeProvider
INFO: HHH000021: Bytecode provider name : javassist
Nov 02, 2015 11:02:26 AM org.hibernate.boot.jaxb.internal.stax.LocalXmlResourceResolver resolveEntity
WARN: HHH90000012: Recognized obsolete hibernate namespace http://hibernate.sourceforge.net/hibernate-configuration. Use namespace http://www.hibernate.org/dtd/hibernate-configuration instead. Support for obsolete DTD/XSD namespaces may be removed at any time.
Exception in thread "main" org.hibernate.HibernateException: Error accessing stax stream
at org.hibernate.boot.cfgxml.internal.JaxbCfgProcessor.unmarshal(JaxbCfgProcessor.java:107)
at org.hibernate.boot.cfgxml.internal.JaxbCfgProcessor.unmarshal(JaxbCfgProcessor.java:65)
at org.hibernate.boot.cfgxml.internal.ConfigLoader.loadConfigXmlResource(ConfigLoader.java:57)
at org.hibernate.boot.registry.StandardServiceRegistryBuilder.configure(StandardServiceRegistryBuilder.java:163)
at org.hibernate.cfg.Configuration.configure(Configuration.java:259)
at org.hibernate.cfg.Configuration.configure(Configuration.java:245)
at com.digitek.students.Main.main(Main.java:15)
Caused by: javax.xml.stream.XMLStreamException: ParseError at [row,col]:[12,1]
Message: Content is not allowed in prolog.
at com.sun.org.apache.xerces.internal.impl.XMLStreamReaderImpl.next(Unknown Source)
at com.sun.xml.internal.stream.XMLEventReaderImpl.peek(Unknown Source)
at org.hibernate.boot.cfgxml.internal.JaxbCfgProcessor.unmarshal(JaxbCfgProcessor.java:103)
... 6 more

请帮我解决这个问题。预先感谢您。

最佳答案

问题在于 XML 的注释方式。

<!-- Database connection settings -->

试试这个

<!--
<Database connection settings>
-->

How to comment a single line in XML?

关于java - 使用 hibernate 连接数据库时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33483221/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com