将ibatis迁移到mybatis3的过程记录

场景:有些以前的老项目是使用ibatis开发的,现在有转换成mybatis3的需求。

环境准备:需要安装Ant,以下是本人的安装版本,具体怎么安装不再赘述,就是下载解压配环境变量,和maven等安装过程类似,可百度。

工具:ibatis2mybatis 地址:https://github.com/mybatis/ibatis2mybatis

注意下载最新的版本。不要下载release版本,最新版本功能多一点

该工具可以帮你将ibatis 2.x sqlmap文件转换为myBatis 3.x mapper文件,该工具是使用了Ant构建任务进行XSTL转换和一些语法文字替换

该工具下载下来使用非常简单,把你要转换的所有sqlmap文件放到source文件夹,然后在当前目录直接运行ant命令即可,转换成功的mapper文件放在了destination文件夹下。

当然,还需要进行一些个性化配置。

比如根据自己的需要在build.xml文件中配置转换类型;

<!-- replace #id:NUMERIC# to #id,jdbcType=NUMERIC# etc. -->

<replace dir="destination" includes="*.xml" token=":NUMERIC#" value=",jdbcType=NUMERIC#" encoding="UTF8"/>

<replace dir="destination" includes="*.xml" token=":TIMESTAMP#" value=",jdbcType=TIMESTAMP#" encoding="UTF8"/>

<replace dir="destination" includes="*.xml" token=":VARCHAR#" value=",jdbcType=VARCHAR#" encoding="UTF8"/>

<replace dir="destination" includes="*.xml" token=":BLOB#" value=",jdbcType=BLOB#" encoding="UTF8"/>

<replace dir="destination" includes="*.xml" token=":TIME#" value=",jdbcType=TIMESTAMP#" encoding="UTF8"/>

<replace dir="destination" includes="*.xml" token=":FLOAT#" value=",jdbcType=FLOAT#" encoding="UTF8"/>

<replace dir="destination" includes="*.xml" token=":INTEGER#" value=",jdbcType=INTEGER#" encoding="UTF8"/>

<replace dir="destination" includes="*.xml" token=":CLOB#" value=",jdbcType=CLOB#" encoding="UTF8"/>

<replace dir="destination" includes="*.xml" token=":DECIMAL#" value=",jdbcType=DECIMAL#" encoding="UTF8"/>

<replace dir="destination" includes="*.xml" token=":VARCHAR2#" value=",jdbcType=VARCHAR#" encoding="UTF8"/>

<!-- add any needed jdbc type here (for example :CLOB#, :FLOAT#, :REAL#, :BIT#, :INTEGER#, :DECIMAL#, :DATE#, :TIME#, .... )

<replace dir="destination" includes="*.xml" token=":???#" value=",jdbcType=???#" encoding="UTF8"/>

还有需要在migrate.xstl文件中做一些个性化配置,具体可以查阅XSLT相关语法。

比如针对dynamic做一些处理,当前面有where 1=1 和没有where 1=1 存在时转换方法是不一样的。

<xsl:template match="dynamic">

<xsl:choose>

<xsl:when test="contains(@prepend, 'where')">

<xsl:element name="where">

<xsl:apply-templates/>

</xsl:element>

</xsl:when>

<xsl:otherwise >

<xsl:apply-templates/>

</xsl:otherwise>

</xsl:choose>

</xsl:template>

还有针对isNotEqual的处理要自己补充:

<xsl:template match="isNotEqual">

<xsl:element name="if">

<xsl:attribute name="test">

<xsl:value-of select="@property" /><xsl:text> != '</xsl:text> <xsl:value-of select="@compareValue" /><xsl:text>'.toString()</xsl:text>

</xsl:attribute>

<xsl:value-of select="@prepend" />

<xsl:apply-templates/>

</xsl:element>

</xsl:template>

当出现如下情况时isEmpty isNotEmpty分为两种情况,一种是多参数时的转换,一种是只有一个默认参数时的转换,一个参数时的情况如下

需要配置如下代码:

<xsl:template match="isNotEmpty">

<xsl:element name="if">

<xsl:attribute name="test">

<xsl:if test="substring-before(@property, '.')">

<xsl:value-of select="substring-before(@property, '.')" /><xsl:text> != null and </xsl:text>

</xsl:if>

<xsl:choose>

<xsl:when test="not(@property)">

<xsl:text>_parameter</xsl:text>

</xsl:when>

<xsl:otherwise >

<xsl:value-of select="@property" />

</xsl:otherwise>

</xsl:choose>

<xsl:text> != null and </xsl:text>

<xsl:choose>

<xsl:when test="not(@property)">

<xsl:text>_parameter</xsl:text>

</xsl:when>

<xsl:otherwise >

<xsl:value-of select="@property" />

</xsl:otherwise>

</xsl:choose>

<xsl:text> != ''</xsl:text>

</xsl:attribute>

<xsl:value-of select="@prepend" />

<xsl:apply-templates/>

</xsl:element>

</xsl:template>

<xsl:template match="isEmpty">

<xsl:element name="if">

<xsl:attribute name="test">

<xsl:if test="substring-before(@property, '.')">

<xsl:value-of select="substring-before(@property, '.')" /><xsl:text> != null and </xsl:text>

</xsl:if>

<xsl:choose>

<xsl:when test="not(@property)">

<xsl:text>_parameter</xsl:text>

</xsl:when>

<xsl:otherwise >

<xsl:value-of select="@property" />

</xsl:otherwise>

</xsl:choose>

<xsl:text> == null or </xsl:text>

<xsl:choose>

<xsl:when test="not(@property)">

<xsl:text>_parameter</xsl:text>

</xsl:when>

<xsl:otherwise >

<xsl:value-of select="@property" />

</xsl:otherwise>

</xsl:choose>

<xsl:text> == ''</xsl:text>

</xsl:attribute>

<xsl:value-of select="@prepend" />

<xsl:apply-templates/>

</xsl:element>

</xsl:template>

Xstl中关于是否是null的判断语法格式如下:

<xsl:if test=" USERNAME ">

USERNAME is not null

</xsl:if>

<xsl:if test="not(USERNAME)">

USERNAME is null

</xsl:if>

<xsl:if test="USERNAME =''">

USERNAME is empty string

</xsl:if>

<xsl:if test="USERNAME!=''">

USERNAME is not empty string

</xsl:if>

另外遇到mybatis中传参数的几个小问题:

1 当MyBatis 判断条件为等于的时候,常量需要加 .toString() 来转换,因为mybatis会把' '解析为Char,而传入的是String类型,java是强类型语言,所以不等。

以下8,2,3,4,5均可以,6 直接报语法错误,也不会执行。

<if test='tblx != null and tblx== "8" '>

AND tblx = #{tblx,jdbcType=VARCHAR}

</if>

<if test="unitId!=null and unitId == '1' ">

AND unit_id=#{unitId,jdbcType=INTEGER}

</if>

<if test="jctbisreturn!=null and jctbisreturn == '2'.toString()" >

AND jctbisreturn=#{jctbisreturn,jdbcType=INTEGER}

</if>

<if test="userId!=null and userId == 3 ">

AND user_id=#{userId,jdbcType=INTEGER}

</if>

<if test="townCode!=null and townCode!='4'.toString()">

AND town_code=#{townCode,jdbcType=VARCHAR}

</if>

<if test="xzqdm!=null and xzqdm=='5'.toString()">

AND xzqdm=#{xzqdm,jdbcType=VARCHAR}

</if>

<if test="xmc!=null and xmc==6.toString()">

AND xmc=#{xmc,jdbcType=VARCHAR}

</if>

<if test="jcbh != null and jcbh == '7' ">

AND jcbh = #{jcbh,jdbcType=VARCHAR},

</if>

<if test="townCode!=null and townCode!='9'">

AND town_code=#{townCode,jdbcType=VARCHAR}

</if>

另外:

<if test="townCode!=null and townCode==''">

AND town_code=#{townCode,jdbcType=VARCHAR}

</if>

<if test="townCode!=null and townCode==''.toString()">

AND town_code=#{townCode,jdbcType=VARCHAR}

</if>

当输入 String townCode="" 上面的两个语句都可以执行,当为空字符串时可以不用''.toString(),可以简写为''即可

2 MyBatis在使用单个参数进行if条件判断的时候,如果直接使用参数本身,则会报出:There is no getter for property named ... 的异常,比如

<select id="testStringParam2" resultMap="BaseResultMap">

SELECT

*

FROM j_jctb

<where>

<if test="tblx!= null and tblx!= ''">

AND tblx = #{value,jdbcType=VARCHAR}

</if>

</where>

</select>

正确的方法是应该用"_parameter"来代替需要判断的参数:

<select id="testStringParam2" resultMap="BaseResultMap">

SELECT

*

FROM j_jctb

<where>

<if test="_parameter != null and _parameter != ''">

AND tblx = #{value,jdbcType=VARCHAR}

</if>

</where>

</select>

当然,还有一种方法就是在Mapper接口中给定参数名,如:

JJctb testStringParam2(String tblx) throws Exception ;

改为:

JJctb testStringParam2(@Param("tblx") String tblx) throws Exception ;

中途遇到关于mybatis传递多个实体参数的问题,可采用如下写法:以@Param绑定,以对象名.(点)对象属性名的方式调用就可以了。

abstract JJctb testStringParam3(

@Param("jctb") JJctb jctb ,

@Param("yuser") YUser yuser,

@Param("tblx") String tblx) throws Exception ;

<select id="testStringParam3" resultMap="BaseResultMap">

SELECT

*

FROM j_jctb

<where>

<if test="jctb.jcbh != null and jctb.jcbh != ''">

AND jcbh = #{jctb.jcbh,jdbcType=VARCHAR}

</if>

<if test="yuser.username != null and yuser.username != ''">

AND username = #{yuser.username,jdbcType=VARCHAR}

</if>

<if test="tblx != null and tblx != ''">

AND tblx = #{tblx,jdbcType=VARCHAR}

</if>

</where>

</select>

参考博文:http://blog.csdn.net/lanxuezaipiao/article/details/52902074

http://blog.csdn.net/shenzhenNBA/article/details/46673327

将ibatis迁移到mybatis3的过程记录的更多相关文章

  1. 金蝶Apusic中间件适配JetSpeed2过程记录

    金蝶Apusic中间件适配JetSpeed2过程记录: 1.安装金蝶并配置域,确保域运行正常. 2.参考<JetSpeed2部署至Apusic操作步骤记录>进行应用迁移. https:// ...

  2. 升级Windows 10 正式版过程记录与经验

    升级Windows 10 正式版过程记录与经验 [多图预警]共50张,约4.6MB 系统概要: 预装Windows 8.1中文版 64位 C盘Users 文件夹已经挪动到D盘,并在原处建立了符号链接. ...

  3. 双系统Ubuntu分区扩容过程记录

    本人电脑上安装了Win10 + Ubuntu 12.04双系统.前段时间因为在Ubuntu上做项目要安装一个比较大的软件,导致Ubuntu根分区的空间不够了.于是,从硬盘又分出来一部分空间,分给Ubu ...

  4. .NET 4.5+项目迁移.NET Core的问题记录

    .NET 4.5+项目迁移.NET Core的问题记录 这几天试着把目前的开发框架迁移到新的.net core平台,中间遇到的问题在这里简单记录一下. 迁移过程遇到的最大的问题IOC容器.我目前使用的 ...

  5. SVN迁移到Git的过程(+ 一些技巧)

    SVN迁移到Git的过程(+ 一些技巧) 李顺利 Key Words SVN,Git,Clone,Conversion,Tips,VCS,Pro Git 关于在VCS中SVN和Git之间的迁移(Clo ...

  6. CentOS 5.5 下安装Countly Web Server过程记录

    CentOS 5.5 下安装Countly Web Server过程记录 1. 系统更新与中文语言包安装 2. 基本环境配置: 2.1. NodeJS安装 依赖项安装 yum -y install g ...

  7. linux-i386(ubuntu)下编译安装gsoap_2.8.17过程记录

    过程记录 :  1.下载gsoap_2.8.17.zip 并 解压 : $unzip gsoap_2.8.17.zip     2.进入解压后的目录gsoap-2.8   3.自动配置编译环境:  $ ...

  8. 【转】android 最新 NDK r8 在window下开发环境搭建 安装配置与使用 详细图文讲解,完整实际配置过程记录(原创)

    原文网址:http://www.cnblogs.com/zdz8207/archive/2012/11/27/android-ndk-install.html android 最新 NDK r8 在w ...

  9. 升级到 ExtJS 5的过程记录

    升级到 ExtJS 5的过程记录   最近为公司的一个项目创建了一个 ExtJS 5 的分支,顺便记录一下升级到 ExtJS 5 所遇到的问题以及填掉的坑.由于 Sencha Cmd 的 sencha ...

随机推荐

  1. ARM Linux BenchMark

    http://tonyho.github.io/ARM%20Linux%20BenchMark.html 1.背景说明 许多公司有很多不同的ARM SoC的研发产品,ARM核心可能有Cortex-A8 ...

  2. Ansible笔记(7)---常用模块之系统类模块(cron、service)

    一.cron模块 1.1作用: cron 模块可以帮助我们管理远程主机中的计划任务,功能相当于 crontab 命令. 在了解cron模块的参数之前,先写出一些计划任务的示例: # 示例1,每天的1点 ...

  3. [php 拓展开发] hello world

    1.下载php源码包 2.在php-7.0.9/ext 下执行 ./ext_skel --extname=hello  3. 4.拓展代码 5. 6.编译 多了分号,出错. 重新编译成功,但是生成的文 ...

  4. bzoj1706 [usaco2007 Nov]relays 奶牛接力跑 矩阵快速幂

    题目传送门 https://lydsy.com/JudgeOnline/problem.php?id=1706 题解 换个方法定义矩阵乘法:先加再取 \(\min\). 对于一个 \(n\times ...

  5. DataFrame.loc的区间

    df.loc[dates[0:1],'E']和df.loc[dates[0]:dates[1],'E']不同. 前者不包含dates[1],后者是包含dates[1]的. 根据Python3中实际代码 ...

  6. Linux启动redis提示 /var/run/redis_6379.pid exists, process is already running or crashed

    执行启动命令:service redisd start 提示信息:/var/run/redis_6379.pid exists, process is already running or crash ...

  7. pyhive连接hive(失败)

    一.安装pyhive pip install sasl(需要来下载至本地安装:https://download.lfd.uci.edu/pythonlibs/q4hpdf1k/sasl-0.2.1-c ...

  8. linux运维、架构之路-正则表达式

    一.通配符的含义 符号 参数说明 其他说明 | 管道 把前一个命令结果通过管道传递给后面一个命令 ; 命令的分隔符 ll /oldboy/;cat oldboy.tx . 表示当前目录 * 匹配文本或 ...

  9. python 3.6连接数据库(pymysql方式)

    pymysql 模块可以通过 pip 安装.但如果你使用的是 pycharm IDE,则可以使用 project python 安装第三方模块. [File] >> [settings] ...

  10. 30 August

    DP 复习. 参考 redbag 博客 提供的题表. P2858 [USACO06FEB] Treats for the Cows 区间 DP. 转换思路,题面从外往里递推,我们采用从里往外递推,权值 ...