Mybatismybatis Example Criteria like 模糊查询

Posted 花生喂龙

tags:

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

正文:

在Java中使用Mybatis自动生成的方法,like需要自己写通配符

public List<TableA> query(String name) {
    Example example = new Example(TableA.class);
    example.createCriteria()
            .andLike("name", "%"+ name +"%");
    example.setOrderByClause("CREATE_TIME DESC");

    return this.tableAMapper.selectByExample(example);
}

参考博客:

1,mybatis Example Criteria like 模糊查询 - c2223164136的专栏 - CSDN博客
https://blog.csdn.net/cao_j/article/details/46941095

以上是关于Mybatismybatis Example Criteria like 模糊查询的主要内容,如果未能解决你的问题,请参考以下文章

MyBatisMyBatis Generator配置

mybatismybatis资料

mybatisMyBatis Generator

MybatisMyBatis 注解方式的基本 用法

example里criteria怎么用and

MybatisMyBatis之缓存