About

MyBatis is a framework for mapping objects (Java and .NET) to relational databases with an emphasis on simplicity. The objects are coupled with SQL statements and/or stored procedures using XML descriptor files.

MyBatis is lightweight and quite easy to use since the only parts involved are the own objects, XML and SQL. It also integrates with the Spring framework.

Example mapping file:

<sqlMap namespace="CUSTOMER">
    <resultMap class="com.example.Customer" id="CustomerMapping">
        <result column="CUSTOMER_ID" property="customerId" jdbcType="DECIMAL" />
        <result column="NAME" property="name" jdbcType="VARCHAR" />
    </resultMap>
    <select id="CUSTOMER.selectByPrimaryKey" parameterClass="java.lang.Long" resultMap="CustomerMapping">
        <![CDATA[  
          SELECT customer_id,
                 name
            FROM customer
           WHERE customer_id = #id:DECIMAL#
        ]]>
    </select>
</sqlMap>

Resources

history|show excerpt|excerpt history