Hello
Looking at this page http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/orm.html#orm-introduction
It says that spring supports “integration with Hibernate, Java Persistence API (JPA), Java Data Objects (JDO) and iBATIS SQL” and the section below on “Implementing DAOs based on plain Hibernate 3 API” shows how sessionFactorys are wired into the DAO and a org.springframework.orm.hibernate3.HibernateTransactionManager is also used.
Running the MVC Scaffolding CRUD wizards generates DAOS that use org.skyway.spring.util.dao.AbstractJpaDao and bear no relation to the spring docs.
Am I missing something here. When I add Spring and hibernate capabilities to a myelipse project I get generated DAOs that look more like the proing docs.
How do I do get Spring 3 to use Hibernate 3 as described in the springs docs with the MVC Scaffolding?
Cheers for any advice