编辑
2023-07-25
学习记录
00
请注意,本文编写于 617 天前,最后修改于 195 天前,其中某些信息可能已经过时。

目录

前提
第一种mapper的方式
第二种使用SqlRunner
mybatisPlus底层

前提

需要前端传入语句,后端直接对语句进行执行操作,之前已经写过使用jdbc的方式执行,现在想用mabatis的方式执行

第一种mapper的方式

直接传入mapper接口层,使用@Select接口实现,或者传入mapper.xml中进行编写

java
public interface BaseMapper<T> extends com.baomidou.mybatisplus.core.mapper.BaseMapper<T> { @Select("${nativeSql}") Object nativeSql(@Param("nativeSql") String nativeSql); }

使用一个自己的BaseMapper去继承MybatisPlus自己的BaseMapper,然后所有的Mapper去继承自己写的BaseMapper即可,那么所有的Mapper都能查询原生SQL了。可能会导致异常

第二种使用SqlRunner

使用SqlRunner的方式执行原生SQL,也是MybatisPlus源码的测试类中用的最多的方法。 当前模块的application.yml文件中增加开启SqlRunner的开关

yml
mybatis-plus: global-config: enable-sql-runner: true

代码

java
int count = SqlRunner.db().selectCount(countSql);

mybatisPlus底层

java
String sql = "select * from test_example limit 1,10"; Class<ExampleEntity> entityClass = ExampleEntity.class; // INFO: DCTANT: 2022/9/29 使用MybatisPlus自己的SqlHelper获取SqlSessionFactory SqlSessionFactory sqlSessionFactory = SqlHelper.sqlSessionFactory(ExampleEntity.class); // INFO: DCTANT: 2022/9/29 通过SqlSessionFactory创建一个新的SqlSession,并获取全局配置 SqlSession sqlSession = sqlSessionFactory.openSession(); Configuration configuration = sqlSessionFactory.getConfiguration(); // INFO: DCTANT: 2022/9/29 生成一个uuid,用于将这个SQL创建的MappedStatement注册到MybatisPlus中 String sqlUuid = UUID.fastUUID().toString(true); RawSqlSource rawSqlSource = new RawSqlSource(configuration, sql, Object.class); MappedStatement.Builder builder = new MappedStatement.Builder(configuration, sqlUuid, rawSqlSource, SqlCommandType.SELECT); ArrayList<ResultMap> resultMaps = new ArrayList<>(); // INFO: DCTANT: 2022/9/29 创建返回映射 ResultMap.Builder resultMapBuilder = new ResultMap.Builder(configuration, UUID.fastUUID().toString(true), entityClass, new ArrayList<>()); ResultMap resultMap = resultMapBuilder.build(); resultMaps.add(resultMap); builder.resultMaps(resultMaps); MappedStatement mappedStatement = builder.build(); // INFO: DCTANT: 2022/9/29 将创建的MappedStatement注册到配置中 configuration.addMappedStatement(mappedStatement); // INFO: DCTANT: 2022/9/29 使用SqlSession查询原生SQL List<ExampleEntity> list = sqlSession.selectList(sqlUuid); // INFO: DCTANT: 2022/9/29 关闭session sqlSession.close();

本文作者:Weee

本文链接:

版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!