如果你想在代码中获取Mybatis方法的sql,你可以使用本工具。
SqlHelper地址:SqlHelper.java
这个工具不需要你实际去执行Mybatis的查询方法就能得到sql。
程序提供的可以调用的方法如下:
方法主要分两大类,使用命名空间namespace调用或者使用Mapper接口方式调用。
两种方法的主要区别在于使用Mapper接口时会根据Mapper接口的参数构造参数Map,最后还是使用的getNamespaceSql方法。
使用该方法必须提供SqlSession或者Mapper接口的实例。
下面是测试方法:
@Test public void test() { SqlSession sqlSession = DynamicHelper.getSqlSession(); try { CountryMapper countryMapper = sqlSession.getMapper(CountryMapper.class); System.out.println( SqlHelper.getNamespaceSql( sqlSession, "com.github.pagehelper.mapper.CountryMapper.selectIf2ListAndOrder")); System.out.println( SqlHelper.getMapperSql( countryMapper, "selectIf2ListAndOrder", Arrays.asList(1, 2))); System.out.println( SqlHelper.getMapperSql( sqlSession, "com.github.pagehelper.mapper.CountryMapper.selectAll")); System.out.println( SqlHelper.getMapperSql( sqlSession, "com.github.pagehelper.mapper.CountryMapper.selectIf2ListAndOrder", Arrays.asList(1, 2), Arrays.asList(3, 4), "id")); } finally { sqlSession.close(); } }
输出结果:
select * from country select * from country WHERE id not in ( 1 , 2 ) select * from country select * from country WHERE id not in ( 1 , 2 ) and id not in ( 3 , 4 ) order by id