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?

link|improve this question
feedback

closed as not constructive by Robert Harvey Dec 24 '11 at 16:06

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.

13 Answers

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.

link|improve this answer
12  
It's the same story over and over again with ORM: nice quick initial development, and a big drain on your resources further on in the project when tracking ORM related bugs and inefficiencies. I also hate the fact that it seems to give developers the idea that they never have to write specific optimized queries. – Eelco May 29 '10 at 6:52
2  
Hey, is this all true for big real life projects? – santiagobasulto Oct 5 '10 at 2:13
5  
I agree. I've been using ORM over 3 years now, and i cannot tell how much time was wasted (still is) to resolve persistence related issues. We have no control whatsoever about what is happening "under the hood", configurations are too many to be managed efficiently and there are behaviors that could drive one crazy. On the other hand i have support for major databases and never have to worry about their differences. – marcolopes Mar 5 '11 at 13:03
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.

link|improve this answer
I agree with this statement. How much from the total development time will be consumed by writing persistence code? I think less than 10-15% – adrian.tarau Nov 25 '09 at 18:50
3  
It depends. Sure, if you're using just one particular kind of database, it's easy to get away with not using an ORM. However, when you need to support other kinds of databases, it can quickly become less manageable. – Jason Baker Jan 23 '10 at 16:26
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.

link|improve this answer
1  
I vote Hib too, but with an important addition: we should use JPA API only even if JPA implementation is in fact provided by Hib. – Vladimir Dyuzhev Jan 17 '09 at 1:24
feedback

Hibernate, because it:

  • is stable - being around for so many years, it lacks any major problems
  • dictates the standards in the ORM field
  • implements the standard (JPA), in addition to dictating it.
  • has tons of information about it on the Internet. There are many tutorials, common problem solutions, etc
  • is powerful - you can translate a very complex object model into a relational model.
  • it has support for any major and medium RDBMS
  • is easy to work with, once you learn it well

A few points on why (and when) to use ORM:

  • you work with objects in your system (if your system has been designed well). Even if using JDBC, you will end up making some translation layer, so that you transfer your data to your objects. But my bets are that hibernate is better at translation than any custom-made solution.
  • it doesn't deprive you of control. You can control things in very small details, and if the API doesn't have some remote feature - execute a native query and you have it.
  • any medium-sized or bigger system can't afford having one ton of queries (be it at one place or scattered across), if it aims to be maintainable
  • if performance isn't critical. Hibernate adds performance overhead, which in some cases can't be ignored.
link|improve this answer
When I compare Hibernate and JPA I go for Hibernate, and if compare JPA and JDO I go for JDO! I like JDO very much, but I love two features of Hibernate (which are not available in JDO), one is @Filters and the other is you can map version fields (for optimistic locking) into normal fields, which is not possible in JDO. – Amir Pashazadeh Feb 24 at 22:13
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:

  • SQL is a good thing. Many things can be expressed quite nicely in SQL. There is no need for complete abstraction of SQL.
  • The relational data model is a good thing. It has proven the best data model for the last 40 years. There is no need for XML databases or truly object oriented data models. Instead, your company runs several instances of Oracle, MySQL, MSSQL, DB2 or any other RDBMS.
  • SQL has a structure and syntax. It should not be expressed using "low-level" String concatenation in JDBC - or "high-level" String concatenation in HQL - both of which are prone to hold syntax errors.
  • Variable binding tends to be very complex when dealing with major queries. THAT is something that should be abstracted.
  • POJO's are great when writing Java code manipulating database data.
  • POJO's are a pain to write and maintain manually. Code generation is the way to go. You will have compile-safe queries including datatype-safety.
  • The database comes first. While the application on top of your database may change over time, the database itself is probably going to last longer.
  • Yes, you do have stored procedures and user defined types (UDT's) in your legacy database. Your database-tool should support that.

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:

  // Select authors with books that are sold out
  SELECT * 
    FROM T_AUTHOR a
   WHERE EXISTS (SELECT 1
                   FROM T_BOOK
                  WHERE T_BOOK.STATUS = 'SOLD OUT'
                    AND T_BOOK.AUTHOR_ID = a.ID);

And how it can be expressed in jOOQ:

  // Alias the author table
  Table<TAuthorRecord> a = T_AUTHOR.as("a");

  // Use the aliased table in the select statement
  create.selectFrom(a)
        .where(create.exists(create.select(create.constant(1))
                                   .from(T_BOOK)
                                   .where(TBook.STATUS.equal(TBookStatus.SOLD_OUT)
                                   .and(TBook.AUTHOR_ID.equal(a.getField(TAuthor.ID))))));
link|improve this answer
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.

link|improve this answer
3  
Ibatis for complex reads, and hibernate for create, update delete and simple reads is perfect choice. – darpet Aug 24 '10 at 13:47
feedback

SimpleORM, because it is straight-forward and no-magic. It defines all meta data structures in Java code and is very flexible.

SimpleORM provides similar functionality to Hibernate by mapping data in a relational database to Java objects in memory. Queries can be specified in terms of Java objects, object identity is aligned with database keys, relationships between objects are maintained and modified objects are automatically flushed to the database with optimistic locks.

But unlike Hibernate, SimpleORM uses a very simple object structure and architecture that avoids the need for complex parsing, byte code processing etc. SimpleORM is small and transparent, packaged in two jars of just 79K and 52K in size, with only one small and optional dependency (Slf4j). (Hibernate is over 2400K plus about 2000K of dependent Jars.) This makes SimpleORM easy to understand and so greatly reduces technical risk.

link|improve this answer
Is it like ActiveObjects? – Adeel Ansari Jan 17 '09 at 3:13
Haven't used it, but ActiveObjects describes itself as sort of a Hibernate-lite on their website, so there probably is some similarity. – Abdullah Jibaly Jan 17 '09 at 5:01
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

link|improve this answer
+1 for mentioning eclipselink is the RI ... it does say something – Dapeng Sep 6 '11 at 9:41
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:

List<Person> boys = Ebean.find(Person.class)
                                  .where()
                                       .eq("gender", "M")
                                       .le("age", 18)
                                  .orderBy("firstName")
                                  .findList();
link|improve this answer
I must be a little bit weird... select from Person where gender = 'M' and age < 18 ordered by firstName just looks so much better to me :-) – Eelco May 29 '10 at 6:46
1  
This is one of the better orms I've seen in java. It's decision to use a singleton is refreshing and gives it a massive practical advantage over the others. – opsb Jun 23 '10 at 7:46
feedback

I've been pondering the same question myself and have decided to go with Apache Cayenne.

link|improve this answer
no it doesn't. You can use annotations. – Bozho Nov 25 '09 at 19:17
@Bozho - Didn't know that. I've edited my answer. – ssakl Nov 25 '09 at 19:31
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.

link|improve this answer
3  
If you're building applications on top of a persistent store, like many of us do, whether that is a RDBMS or some NoSQL flavor, that store will have it's own efficient way of accessing it. Trying to abstract from that too much is just overengineering. Being overly zealous about 'true OOD' gets those astronaut architectures Java is infamous for. – Eelco May 6 '11 at 20:57
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.

<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN" "http://ibatis.apache.org/dtd/sql-map-2.dtd">
<sqlMap namespace="User">

    <typeAlias alias="User" type="com.example.entity.User"/>

    <select id="createUser" parameterClass="User" resultClass="User">
        INSERT INTO users (
            id,
            user_name,
            email,
            created_at
        )
        VALUES (
            #id#,
            #userName#,
            #email#,
            now()
        )
        RETURNING
            id,
            user_name AS userName,
            email,
            created_at AS createdAt,
            updated_at AS updatedAt
    </insert>

    <select id="batchUser" parameterClass="list" resultClass="User">
        INSERT INTO users (
            id,
            user_name,
            email,
            created_at
        )
        <iterate conjunction=",">
        (
            #[].id#,
            #[].userName#,
            #[].email#,
            now()
        )
        </iterate>
        RETURNING
            id,
            user_name AS userName,
            email,
            created_at AS createdAt,
            updated_at AS updatedAt
    </insert>

    <select id="readUser" parameterClass="User" resultClass="User">
        SELECT
            id,
            user_name AS userName,
            email,
            created_at AS createdAt,
            updated_at AS updatedAt
        FROM
            users
        <dynamic prepend="WHERE">
            <isNotNull prepend="AND" property="id">
            id = #id#
            </isNotNull>
            <isNotNull prepend="AND" property="userName">
            user_name = #userName#
            </isNotNull>
            <isNotNull prepend="AND" property="email">
            email = #email#
            </isNotNull>
        </dynamic>
    </select>

    <statement id="updateUser" parameterClass="User">
        UPDATE
            users
        SET
            user_name = #userName#,
            email = #email#,
            updated_at = now()
        WHERE
            id = #id#
    </statement>

    <statement id="deleteUser" parameterClass="User">
        DELETE FROM
            users
        WHERE
            id = #id#
    </statement>

</sqlMap>

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.

package com.example.helpers;

public class ResultSet {

    public static Integer Integer(ResultSet resultSet, String column) throws SQLException {
        Integer value = resultSet.getInt(column);
        if (resultSet.wasNull()) {
            value = null;
    }
        return value;
    }

}

Then you can access fields through static imports.

import static com.example.helpers.ResultSet.Integer;

...

Integer integer = Integer(resultSet, "column");
link|improve this answer
I would advice staying clear of JPA and Hibernate if you want your ORM to be easy to replace by another. The two examples above are easily interchangeable, if you abstract your integration with interfaces. JPA implies entity-specific and sometimes ORM-specific adoptions such as annotations. The best Alternative IFF you start with JPA is the JPA-2 API implemented by Hibernate, but the java-code (if avoiding JPQL) is messy and has very little of the readabilty I try to attain when coding. – Martin Nov 2 '11 at 11:01
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.

link|improve this answer
feedback