Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am facing issue with Annotation configuration

When i use sessionFactory = new AnnotationConfiguration().configure("/conn/hibernate.cfg.xml").addAnnotatedClass(User.class).buildSessionFactory();

It says AnnotationConfiguration is deprecated ,Use configuration instead of it Even if i use use it i get No such method error

When i use sessionFactory=new Configuration().configure("/conn/hibernate.cfg.xml").buildSessionFactory(); ERROR [STDERR] org.hibernate.MappingException: An AnnotationConfiguration instance is required to use

I am using Jboss 6.1.0 Final with server supplied configuration.

Here is my code


User.java

package bean;
import javax.persistence.Column;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
import org.hibernate.annotations.*;

@Entity
@Table(name= "H_USER")
public class User {

@Column(name="USER_ID") 
String username;
@Column(name="PASSSWORD")
String password;
@Column(name="FIRSTNAME")
String firstname;
@Column(name="LASTNAME")
String lastname;
@Column(name="EMAIL")
String email;
@Column(name="GENDER")
String gender;
@Column(name="PHNO")
long phno;
boolean isValid;

//setters & getters
}

_____________________________XXX________________________________________

hibernate.cfg.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

<hibernate-configuration>
    <session-factory>
        <property name="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
        <property name="hibernate.connection.url">jdbc:oracle:thin:@127.0.0.1:1521:ORCL</property>
        <property name="hibernate.connection.username">scott</property>
        <property name="connection.password">tiger</property>
        <property name="connection.pool_size">1</property>
        <property name="hibernate.dialect">org.hibernate.dialect.OracleDialect</property>
        <property name="show_sql">true</property>
        <property name="hbm2ddl.auto">create</property>
        <property Name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
        <!-- <mapping class="bean.*"/> -->
        <mapping package="bean" class="User"/> 
    </session-factory>
</hibernate-configuration>

_______________XXX_______________________

Calling method


public boolean addUser(User AddUsr) {
        Session session = null;
        SessionFactory sessionFactory = null;

        try {
            // Normal SessionFactory init
            // sessionFactory=new
            // Configuration().configure().buildSessionFactory();
            /* This is Example to keep hbm config file anywhere else */
        sessionFactory = new AnnotationConfiguration().configure("/conn/hibernate.cfg.xml").addAnnotatedClass(User.class).buildSessionFactory();
            // In hibernate 3.6 Annotation configuration is deprecated
            //sessionFactory=new Configuration().configure("/conn/hibernate.cfg.xml").buildSessionFactory();


            // Opening session
            session = sessionFactory.openSession();
            // Creating Transaction
            Transaction transaction = session.beginTransaction();
            System.out.println("Saving User");
            // Saving persisted object
            session.save(AddUsr);
            // Committing transaction
            transaction.commit();
            System.out.println("Done");
        } catch (HibernateException he) {
            he.printStackTrace();
            return false;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
        return true;
    }

_______________XXX_______________________

What is the solution on this????

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.