Re: Problem running Tapestry 5.8.2 with Hibernate 5.4.32.Final

2023-06-09 Thread Vangel V. Ajanovski
On 9.6.23 14:30, Ben Weidig wrote: we ran into similar issues with custom queries, our workaround is calling getSession() on the session, like this: return this.session.getSession().createQuery(sql) // .setParameter("replyToId", relatedId) //

Re: Problem running Tapestry 5.8.2 with Hibernate 5.4.32.Final

2023-06-09 Thread Ben Weidig
Hi Chris, we ran into similar issues with custom queries, our workaround is calling getSession() on the session, like this: return this.session.getSession().createQuery(sql) // .setParameter("replyToId", relatedId) // .setParameter("type",

Problem running Tapestry 5.8.2 with Hibernate 5.4.32.Final

2023-06-09 Thread Christopher Dodunski (Tapestry)
Hello, I've encountered an issue after upgrading from Tapestry 5.6.4 to 5.7.3. This included moving from Hibernate 5.1.0.Final to 5.4.32.Final (as per the guidelines). The HibernateCrudServiceDAO method below is now failing to fetch named queries via the injected org.hibernate.Session, resu