A main Java interface to Hibernate persistence service.
From the API, I could see it has something to do with proxy. But I couldn't find a lot of …
hibernate proxy hibernate-sessionI need to know, whether the Hibernate's session is thread safe or not. But obvious a new session is attached …
java hibernate session thread-safety hibernate-sessionI want to test hibernate session's save() method using spring testing framework. @Test method is : @Test @Transactional public void testSave() { …
java hibernate spring-transactions spring-test hibernate-sessionI am writing a unit test to for my AbstractHibernateRepository save method. I'm using spring test runner but I get …
java spring hibernate spring-test hibernate-sessionI have a Spring 3.2 application that uses Hibernate 4 and Spring Transactions. All the methods were working great and I could …
spring hibernate spring-transactions hibernate-sessionI have the following method that inserts a large batch of records every few seconds. After some time of running …
hibernate transactions database-connection c3p0 hibernate-sessionI have an application with Spring and Hibernate3 running well in production. Following is the config for session factory in …
spring hibernate hibernate-sessionIn our web application we have a HibernateSessionFactory class, that is opening and closing connections. Everything is okay, but when …
java mysql hibernate jakarta-ee hibernate-sessionI am working with swing and hibernate. Now for retrive connection, I am using sessionFactory.openSession(). Once I done with …
hibernate dbconnection hibernate-sessionI'm using an @Async annotation on a service layer method. Everything works fine when I EAGERLY load @OneToMany collection fields, …
java spring hibernate hibernate-session