What would be the closest equivalent in Java to a Micro ORM such as Dapper, PetaPoco, Massive or CodingHorror?

link|improve this question

5  
Ooh, good question – Marc Gravell Jun 27 '11 at 15:11
1  
@Marc: Exactly. There're many projects that port out of Java projects. These MicroORMs are ones that could be ported from .net to Java. – Robert Koritnik Jun 28 '11 at 16:24
@Robert: It would be great to see some of the good .Net work heading the other way too, for sure. – Kynth Sep 6 '11 at 16:20
feedback

1 Answer

up vote 10 down vote accepted

I recommend Spring JDBC templates. While it's not a "true" ORM, it's a pleasure to use where Hibernate seems to be an overkill.

link|improve this answer
1  
it sounds like a good fit, then ;p Dapper, PetaPoco and Massive are also not "true" ORMs - they instead concentrate on doing an insanely good job of simple data access, which covers a high % of use-cases. – Marc Gravell Jun 29 '11 at 12:15
1  
queryForObject seems a bit clunky, can that not be done with generics in java? eg: Query<Car>("select * from Cars") ? – Sam Saffron Jul 4 '11 at 1:33
2  
@sam-saffron Yes! Use SimpleJdbcTemplete - static.springsource.org/spring/docs/2.0.x/reference/… – Arnelism Jul 11 '11 at 16:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.