hibernate.cfg.xml not found

0
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.xxx.config;

import org.hibernate.cfg.AnnotationConfiguration;
import org.hibernate.SessionFactory;

/**
 * Hibernate Utility class with a convenient method to get Session Factory
 * object.
 *
 */
public class NewHibernateUtil {

    private static final SessionFactory sessionFactory;
    
    static {
        try {
            // Create the SessionFactory from standard (hibernate.cfg.xml) 
            // config file.   
            sessionFactory = new AnnotationConfiguration().configure("hibernate.cfg.xml").buildSessionFactory();
        } catch (Throwable ex) {
            // Log the exception.  
            System.err.println("Initial SessionFactory creation failed." + ex);
            throw new ExceptionInInitializerError(ex);
        }
    }
    
    public static SessionFactory getSessionFactory() {
        return sessionFactory;
    }
}

Plik znajduje się w default source // w widoku plików src/java/hibernate.cfg.xml
po przeniesieniu pliku do src/hibernate.cfg.xml również to samo

Kontener to GlassFish 3.1

0

Sprobuj wrzuci do resources

1 użytkowników online, w tym zalogowanych: 0, gości: 1