Springboot mybatis

Posted N神3

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot mybatis相关的知识,希望对你有一定的参考价值。

1、分页查询

/**
* Dao层
*/
public interface TestMapper {

//mysql分页查询
@Select("${sql} limit #{start},#{size}")
public List<Map> getPageList(@Param("sql") String sql, @Param("start") int start, @Param("end") int size);

//oracle分页查询
@Select("select * from (select t.*, rownum rn from (${sql}) t where rownum <= #{end}) where rn > #{start}")
public List<Map> getPageList(@Param("sql") String sql, @Param("start") int start, @Param("end") int size);

}

 

以上是关于Springboot mybatis的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot使用mybatis-plus+自动代码生成

SpringBoot整合Mybatis之Annotation

springboot整合mybatis,redis,代码

Springboot+Mybaties代码生成器

(SpringBoot)自动生成mybatis代码

springBoot+Mybatis模板代码