1. Getting a HibernateException when returning from CallBack... forum.springsource.orgGetting a HibernateException when returning from CallBack... I'm getting the following error when I perform a simple lookup of my table. Looking at the object in the debugger, the BranchNetBean that ... |
2. HibernateException in updating object forum.springsource.orgJun 3rd, 2005, 06:24 AM #1 MmarcoM View Profile View Forum Posts Private Message Senior Member Join Date Sep 2004 Location London Posts 304 HibernateException in updating object Hello all, i ... |
3. HibernateException: identifier of an instance altered .. forum.springsource.orgJun 8th, 2005, 03:57 AM #1 MmarcoM View Profile View Forum Posts Private Message Senior Member Join Date Sep 2004 Location London Posts 304 HibernateException: identifier of an instance altered .. ... |
4. JUnit + HibernateException forum.springsource.orgJUnit + HibernateException Hi, I'm trying to run an update junit test method, but an exception occur. The exception occur in the bean "transactionManager". Code: org.springframework.beans.factory.BeanDefinitionStoreException: Error registering bean with name ... |
5. How Spring handles HibernateException? forum.springsource.orgHow Spring handles HibernateException? I mean if Spring(version 1.2.6) closes the connection if there is a SQLException or HibernateException. My code is as below, I don't know if I should add ... |
6. JDBCConnectionException not wrapped to HibernateException forum.springsource.orgJDBCConnectionException not wrapped to HibernateException I have defined a datasource in spring context file, which is used by the session manager. When the URL or username associated to it becomes invalid, ... |
7. HibernateException: identifier of an instance altered forum.springsource.orgSep 3rd, 2007, 09:45 AM #1 Jimbot View Profile View Forum Posts Private Message Junior Member Join Date Sep 2007 Posts 3 HibernateException: identifier of an instance altered Hi, I am ... |
8. HibernateException thrown on getCurrentSession() forum.springsource.orgHibernateException thrown on getCurrentSession() Hey guys, I have absolutely no idea how to fix this. Below is the exception, the spring config, and the BillingDao.java. org.hibernate.HibernateException: No Hibernate Session bound to ... |
9. Update 2.0.4 to 2.5.5 - HibernateException: createCriteria is not valid without activ forum.springsource.orgCode: public class UsuarioDAOImpl { private SessionFactory sessionFactory; public User getUserByLogin(String login) { Session session = getSession(); Criteria criteria = session.createCriteria(User.class); criteria.add(Restrictions.eq("login", login)); return (User) criteria.uniqueResult(); } protected Session getSession() { ... |
10. Upgrade 2.0.4 to 2.5.5 - HibernateException forum.springsource.orgUpgrade 2.0.4 to 2.5.5 - HibernateException I've been using Spring 2.0.4 for some time now without any problems. As soon as I upgraded to Spring 2.2.5, I get this error: org.hibernate.HibernateException: ... |
11. JMX with jconsole and HibernateException forum.springsource.orgJMX with jconsole and HibernateException Hi there. I played around with JMX and it was quiet easy to got the first sample running. Next I tried to call a repository from ... |
12. HibernateException while running JUnit tests forum.springsource.orgHibernateException while running JUnit tests Hi all, I have an application that runs fine within an application server, with Spring and Hibernate. But if I want to test a method with ... |
13. NativeSQLQuery HibernateException Could not locate named parameter forum.springsource.orgNativeSQLQuery HibernateException Could not locate named parameter I am writing a native SQL query to do join on two tables (to avoid the eager fetch of other associated tables..) and retrieving ... |