It's a pretty open ended question. I'll be starting out a new project and am looking at different ORMs to integrate with database access.
Do you have any favorites? Are there any you would advise staying clear of?
feedback
|
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
I have stopped using ORMs. The reason is not any great flaw in the concept. Hibernate works well. Instead, I have found that queries have low overhead and I can fit lots of complex logic into large SQL queries, and shift a lot of my processing into the database. So consider just using the JDBC package. | |||||||||||||
feedback
|
|
None, because having an ORM takes too much control away with small benefits. The time savings gained are easily blown away when you have to debug abnormalities resulting from the use of the ORM. Furthermore, ORMs discourage developers from learning SQL and how relational databases work and using this for their benefit. | |||||||
feedback
|
|
Hibernate, because it's basically the defacto standard in Java and was one of the driving forces in the creation of the JPA. It's got excellent support in Spring, and almost every Java framework supports it. Finally, GORM is a really cool wrapper around it doing dynamic finders and so on using Groovy. It's even been ported to .NET (NHibernate) so you can use it there too. | |||||
feedback
|
|
Hibernate, because it:
A few points on why (and when) to use ORM:
| ||||
feedback
|
|
Many ORM's are great, you need to know why you want to add abstraction on top of JDBC. I can recommend http://jooq.sourceforge.net to you. jOOQ embraces the following paradigm:
There are many other good ORM's. Especially Hibernate or iBATIS have a great community. But if you're looking for an intuitive, simple one, I'll say give jOOQ a try. You'll love it! :-) Check out this example SQL:
And how it can be expressed in jOOQ:
| |||
|
feedback
|
|
I would recommend using MyBatis. It is a thin layer on top of JDBC, it is very easy to map objects to tables and still use plain SQL, everything is under your control. | |||||
feedback
|
|
SimpleORM, because it is straight-forward and no-magic. It defines all meta data structures in Java code and is very flexible.
| |||||
feedback
|
|
Eclipse Link, for many reasons, but notably I feel like it has less bloat than other main stream solutions (at least less in-your-face bloat). Oh and Eclipse Link has been chosen to be the reference implementation for JPA 2.0 | |||
|
feedback
|
|
I had a really good experience with Avaje Ebean when I was writing a medium sized JavaSE application. It uses standard JPA annotations to define entities, but exposes a much simpler API (No EntityManager or any of that attached/detached entities crap). It also lets you easily use SQL queries or event plain JDBC calls when necessary. It also has a very nice fluid and type-safe API for queries. You can write things like:
| |||||||
feedback
|
|
I've been pondering the same question myself and have decided to go with Apache Cayenne. | |||||
|
feedback
|
|
While I share the concerns regarding Java replacements for free-form SQL queries, I really do think people criticizing ORM are doing so because of a generally poor application design. True OOD is driven by classes and relationships, and ORM gives you consistent mapping of different relationship types and objects. If you use an ORM tool and end up coding query expressions in whatever query language the ORM framework supports (including, but not limited to Java expression trees, query methods, OQL etc.), you are definitely doing something wrong, i.e. your class model most likely doesn't support your requirements in the way it should. A clean application design doesn't really need queries on the application level. I've been refactoring many projects people started out using an ORM framework in the same way as they were used to embed SQL string constants in their code, and in the end everyone was suprised about how simple and maintainable the whole application gets once you match up your class model with the usage model. Granted, for things like search functionality etc. you need a query language, but even then queries are so much constrained that creating an even complex VIEW and mapping that to a read-only persistent class is much nicer to maintain and look at than building expressions in some query language in the code of your application. The VIEW approach also leverages database capabilities and, via materialization, can be much better performance-wise than any hand-written SQL in your Java source. So, I don't see any reason for a non-trivial application NOT to use ORM. | |||||
feedback
|
|
Ibatis I use the Spring-integration of Ibatis (old version of Mybatis). I'm still avaiting a stable release of Mybatis which utilizes external SQL-mapping resources, integrated with Spring Framework. Until this is available I would recommend spring-ibatis.
It gives me the separation of SQL-mapping i prefer, in the form of XML-based SQL resources. It simply keeps the Java code clean. Queries are made for single entities or list by means of a utility class (using the namespace of the SQL-statements in the SQL-map example above). java.sql If Ibatis does not float you boat, consider using commons-dbcp in combination with standard java.sql (simple prepared statements and result sets), whose main issues is raw datatypes rather than objects. In order to abstract raw datatypes you can write a helper class with static methods.
Then you can access fields through static imports.
| ||||
feedback
|
|
The most simplest ORM I have found so far is Xavoc's XJDataMapper. its cute easy and no XML or anything required.. just download.. extract.. import xavoc package... change settings in config.java files for server host/username/password and database and thats all.. for more Click here to see in action I also found the response from the company very fast. | |||
|
feedback
|