曹耘豪的博客

MybatisPlus和Join的单元测试

  1. 改动点
    1. 支持mybatis-plus
    2. 支持mybatis-plus-join
  2. 代码示例

本文基于之前的《基于H2的Mybatis单元测试》,当使用mybatis-plus和mybatis-plus-join时如何进行单元测试

改动点

支持mybatis-plus

支持mybatis-plus-join

代码示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// ...略
MapperRegistry mapperRegistry = configuration.getMapperRegistry();

// mybatis plus join 支持
configuration.addInterceptor(new MPJInterceptor());
GlobalConfig globalConfig = GlobalConfigUtils.getGlobalConfig(configuration);
globalConfig.setSqlInjector(new MPJSqlInjector());

mapperRegistry.addMapper(mapperClass);
if (mapperXml != null) {
parse(configuration, mapperXml);
}

// ...略
   / 
  , ,