Hi,
I am using Eclipse from 2 years . I saw there is a difference in the new version Eclipse6 and the before version which I used (i.e., Eclipse 4.x) .
In Eclipse 4.x, I used to create the Configuration object and sessionobject but in Eclipse 6
I am given with the DAO class.
for ex: In Eclipse 4 —-
Configuration c = new Configuration();
c.configure();
sessionFactory sf = conf.buildSessionFactory();
Session sess = sf.OpenSession();
Transaction tx = sess.beginTransaction();
In Eclipse 6 —-
UserDAO dao = new UserDAO();
Transaction tx = dao.getSession.beginTransaction();
Can please anyone explain me this?
I wanted to know the advantages of Eclipse6 over Eclipse4.
I din’t find any forums link. So I just posted it here? Can you please tell me where to post my doubts?
Thanks,
Prasanna