Greetings all,
I've got a Hibernate3/Spring3 webapp working where each domain's dao and daoimpl is explicity typed out.
I'm now trying to convert it to using the GenericDao/GenericDaoImpl
pattern but am having trouble
passing the session factory into GenericDaoImpl.
GenericDao
GenericDaoImpl
SquawDao
SquawDaoImp
applicationContext.xml
executing the following does print the correct domain name in GenericDaoImpl.findAll but also finds
sessionFactory to be null on the line commented with an "OOPS"
LiveTestCase
It's SOOOOOOOO close to working - what am I missing?
Thanks in advance,
Still-learning Stuar