通用Mapper
Posted axu521
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通用Mapper相关的知识,希望对你有一定的参考价值。
原理是:拦截器
1、假设:使用MyBatis只需要定义Mapper接口,无需编写Mapper.xml文件
如果实现无需编写Mapper.xml文件,我们必须要实现动态拼接SQL
如何实现动态拼接SQL语句?
思路:编写Mybatis的插件,在执行过程中动态生成SQL语句
2、简介:
Mybatis通用 Mapper极其方便的使用Mybatis单表的增删改查,支持单表操作,不支持通用的多表联合查询。
3、在Mybatis的配置文件中进行配置
3.1 分页助手也是拦截器技术,所以注意顺序,分页助手配置在通用mapper的前面
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd"> <configuration> <plugins> <!-- 配置分页助手 --> <!-- com.github.pagehelper为PageHelper类所在包名 --> <plugin interceptor="com.github.pagehelper.PageHelper"> <property name="dialect" value="mysql" /> <!-- 设置为true时,使用RowBounds分页会进行count查询 --> <property name="rowBoundsWithCount" value="true" /> </plugin> <!-- 配置通用Mapper --> <plugin interceptor="com.github.abel533.mapperhelper.MapperInterceptor"> <!--主键自增回写方法,默认值MYSQL,详细说明请看文档 --> <property name="IDENTITY" value="HSQLDB" /> <!--通用Mapper接口,多个通用接口用逗号隔开 --> <property name="mappers" value="com.github.abel533.mapper.Mapper" /> </plugin> </plugins> </configuration>
3.2 mapper继承Mapper<?>
public interface NewUserMapper extends Mapper<User>{ }
3.3 service 使用
@Service public class NewUserService { @Autowired private NewUserMapper newUsermapper; public EasyUIResult queryUserList(Integer page, Integer rows) { //设置分页参数 PageHelper.startPage(page,rows); //設置查詢條件 Example example=new Example(User.class); example.setOrderByClause("created DESC"); List<User> users = this.newUsermapper.selectByExample(example); PageInfo<User> pageinfo=new PageInfo<User>(users); return new EasyUIResult(pageinfo.getTotal(),pageinfo.getList()); } }
以上是关于通用Mapper的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot启动报错“Consider defining a bean of type ‘xxx.mapper.UserMapper‘ in your configuration.“(代码片段