Spring ORM support for JDBC?
as it is stated at http://static.springsource.org/spring/docs/2.0.8/reference/orm.html
The Spring Framework provides integration with Hibernate, JDO, Ora开发者_开发百科cle TopLink, iBATIS SQL Maps and JPA:
My question here is does not spring provide ORM support for JDBC?
Spring supports JDBC, and includes helper objects to map resultsets to objects, if that's what you mean. It's not listed on the page you link to because it's not considered to be an ORM. (Actually Ibatis isn't considered to be an ORM either, it's a "data mapper".)
精彩评论