1. After the ibatis3.* version officially renamed to Mybaits, it also transferred from Apache to Google Code, that is to say ibatis2.*,mybatis3.*.
2. mapping File Differences
The configuration file for Ibatis is as follows
[HTML] View plain copy <?xml version= "1.0" encoding= "UTF-8" ?> <! doctype sqlmapconfig PUBLIC " -//ibatis.apache.org//dtd sql map config 2.0//en " "Http://ibatis.apache.org/dtd/sql-map-config-2.dtd" > <sqlMapConfig> <!-- public configuration --> <settings usestatementnamespaces= "true" maxrequests= "3000" maxsessions= "1000" maxtransactions= "3000" /> <!-- configuration file begin --> & NBsP; <sqlmap resource= "Com/test/biz/dao/sql/aa_sqlmap.xml" /> [HTML]View plain copy <pre name= "code" class= "HTML" > <sqlmap resource= "Com/test/biz/dao/sql/bb_sqlmap.xml"/> </sqlMapConfig>
The configuration file for MyBatis is as follows
[HTML] View plain copy <?xml version= "1.0" encoding= "UTF-8"? > <! doctype configuration PUBLIC "-//mybatis.org//dtd config 3.0//en " " Http://mybatis.org/dtd/mybatis-3-config.dtd "> <configuration> <settings> <!-- changes from the defaults for testing --> <setting name=