简体   繁体   中英

How to solve this hibernate runtime exception?

I am trying to run following code in eclipse

package com.trial;


import java.sql.*;
import java.io.*;
import org.hibernate.*;
import org.hibernate.cfg.*;

public class AddStudent {

     private static SessionFactory sessionFactory;

     public static void main(String args[]) throws Exception {

    DataInputStream d = new DataInputStream(System.in);
    System.out.println("ENTER YOUR NAME");
    String name = d.readLine();
    System.out.println("ENTER YOUR DEGREE");
    String degree = d.readLine();
    System.out.println("ENTER YOUR PHONE");
    int phone = Integer.parseInt(d.readLine());
    System.out.println("Name: " + name);
    System.out.println("Degree: " + degree);
    System.out.println("Phone: " + phone);
    if ((name.equals("") || degree.equals(""))) {
        System.out.println("Information Required");
    }
    else {

        try {
            sessionFactory = new Configuration().configure("com//xml//hibernate.cfg.xml").buildSessionFactory();
        }
        catch (Exception e) {
             System.out.println(e.getMessage());
        }

        Session s = sessionFactory.openSession();
        Student stu = new Student();
        stu.setName(name);
        stu.setDegree(degree);
        stu.setPhone(phone);
        s.save(stu);
        System.out.println("Added to Database");
        if (s != null)
            s.close();
    }
}
}

But getting Runtime exception during creating session factory object that Unable to read XML.

I am using following xml files

  1. hibernate.cfg.xml

      <!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 name="studentFactory"> <property name="connection.driver_class">com.mysql.jdbc.Driver</property> <property name="connection.url">jdbc:mysql://localhost:3306/ganeshdb</property> <property name="connection.username">****</property> <property name="connection.password">****</property> <property name="connection.pool_size">10</property> <property name="dialect">org.hibernate.dialect.MySQLDialect</property> <property name="show_sql">true</property> <property name="hbm2ddl.auto">create</property> <mapping resource="com//xml//student.hbm.xml" /> </session-factory> </hibernate-configuration> 
  2. Mapping File

      <?xml version="1.0"? encoding='UTF-8'?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://www.hibernate.org/hibernate-configuration-3.0.dtd"> <hibernate-mapping> <class name="com.trial.Student" table="studentdemo"> <id name="id" type="int" column="ID"> <generator class="increment" /> </id> <property name="name" column="name" /> <property name="degree" column="degree" /> <property name="phone" column="phone" /> </class> </hibernate-mapping> 

plz help.

<mapping resource="student.hbm.xml" />

并确保它与hibernate.cfg.xml位于同一目录中

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM