Mybatis practise

mybatis plus Integer映射为枚举和json映射为对象

3月 15, 2023 |

Mybatis log机制源码分析

12月 7, 2014 |

本文先介绍当mybatis 使用log4j时的配置原理,然后介绍如何在运行时动态的开关log!!! 无论使用哪 […more]

Mybatis 使用技巧总结

9月 11, 2014 |

目录: 1、区分 #{} 和 ${}的不同应用场景 2、spring环境用mybatis-spring 的接口 […more]

警惕Mybatis的foreach的的副作用

9月 10, 2014 |

假设有如下的mapper:

这个动态SQL很 […more]

在Mybatis中一条SQL插入多行数据

8月 22, 2014 |

由于批量插入时用一个sql比在一个事务中用多个sql要快,因为这样可以减少web服务器和数据库服务器的网络通信 […more]

Mybatis使用Map代替Entity封装数据

8月 21, 2014 |

有时我们厌倦了写entity来封装从数据库查询出来的记录,比如一个关联查询,我们不想为这个查询写一个entit […more]

Mybatis Order by 没有生效

8月 21, 2014 |

select * from student t order by #{orderString} 传值如下:or […more]

mybatis 将concat 结果映射为byte数组?

8月 21, 2014 |

今天写了一个类似这样的SQL SELECT CONCAT(id,’||’, type) as dataId 在 […more]