Use Spring and Hibernate list for questions related on those.

Markku

On 11/24/2012 05:36 PM, Martin Gainty wrote:
that *should* work as Hibernate Session would generate an List of Persisted 
NavbarLanguage Classes (which your method returns) ..but...the generated Query 
would not be hinted..so optimizing the query is not enabled
does anyone know to introduce Hints into Hibernate generated queries?
Martin
______________________________________________
Place long winded disclaimer here > Date: Fri, 23 Nov 2012 01:55:57 -0800
From: [email protected]
To: [email protected]
Subject: Re: DAO injection in integration tests with a few database server 
specific methods

Here is how I'm using the injected custom DAO bean method:

        public List<NavbarLanguage> findWithNavbar(Navbar navbar) {
                if (navbarLanguageCustomDao != null) {
                        return navbarLanguageCustomDao.findWithNavbar(navbar);
                } else {
                        Criteria criteria = 
getSession().createCriteria(getPersistentClass());
                        criteria.add(Restrictions.eq("navbar",
navbar)).addOrder(Order.asc("languageCode"));
                        return criteria.list();
                }
        }

Not sure if it's the best way to go though :-)



--
View this message in context: 
http://maven.40175.n5.nabble.com/DAO-injection-in-integration-tests-with-a-few-database-server-specific-methods-tp5732576p5732611.html
Sent from the Maven - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

                                        


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to