Mybatis中的Criteria条件查询方式
更新时间:2021年07月22日 08:52:09 作者:wunianisme
这篇文章主要介绍了Mybatis中的Criteria条件查询方式,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
Mybatis Criteria条件查询
Criterion
Criterion是最基本,最底层的Where条件,用于字段级的筛选。
Criteria
Criteria包含一个Cretiron的集合,每一个Criteria对象内包含的Cretiron之间是由AND连接的,是逻辑与的关系。
其它
Example类的distinct字段用于指定DISTINCT查询。
orderByClause字段用于指定ORDER BY条件,这个条件没有构造方法,直接通过传递字符串值指定。
代码示例
import java.io.IOException; import java.io.Reader; import java.util.ArrayList; import java.util.List; import org.apache.ibatis.io.Resources; import org.apache.ibatis.session.SqlSession; import org.apache.ibatis.session.SqlSessionFactory; import org.apache.ibatis.session.SqlSessionFactoryBuilder; import org.apache.log4j.pattern.ClassNamePatternConverter; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import cn.itcast.ssm.mapper.ItemsMapper; import cn.itcast.ssm.po.ItemsExample; public class Student { public static void main(String[] args) throws IOException { /*方式一 */ ItemsExample itemsExample1 = new ItemsExample(); itemsExample1.or().andIdEqualTo(5).andNameIsNotNull(); itemsExample1.or().andPicEqualTo("xxx").andPicIsNull(); List<Integer> fieldValues = new ArrayList<Integer>(); fieldValues.add(8); fieldValues.add(11); fieldValues.add(14); fieldValues.add(22); itemsExample1.or().andIdIn(fieldValues); itemsExample1.or().andIdBetween(5, 9); /* 方式二 criteria1与criteria2是or的关系 */ ItemsExample itemsExample2 = new ItemsExample(); ItemsExample.Criteria criteria1 = itemsExample2.createCriteria(); criteria1.andIdIsNull(); criteria1.andPriceEqualTo((float) 3); ItemsExample.Criteria criteria2 = itemsExample2.createCriteria(); criteria2.andNameIsNull(); criteria2.andIdGreaterThanOrEqualTo(5); itemsExample2.or(criteria2); //方式一和方式二是等价的 // spring获取mapper代理对象 ApplicationContext applicationContext = new ClassPathXmlApplicationContext("classpath:applicationContext.xml"); ItemsMapper itemsMapper = (ItemsMapper) applicationContext.getBean("itemsMapper"); itemsMapper.countByExample(itemsExample2); // 获取SqlSessionFactory String resource = "SqlMapConfig.xml"; Reader reader = Resources.getResourceAsReader(resource); SqlSessionFactory sqlMapper = new SqlSessionFactoryBuilder().build(reader); // 获取SqlSession SqlSession sqlSession = sqlMapper.openSession(); } }
Mybatis的Criteria用法总结
用一对多内敛查询的时候,有的老铁提出left join in 但是我和同事商讨结果是用代码写处各种list然后stream存到数据库中,这样一来把计算压力从数据库存入服务器,当并发量高了,这样做的好处就体现在性能方面了。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
Spring Boot 在启动时进行配置文件加解密的方法详解
这篇文章主要介绍了Spring Boot 在启动时进行配置文件加解密的方法,本文通过实例给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2020-06-06Java源码解析CopyOnWriteArrayList的讲解
今天小编就为大家分享一篇关于Java源码解析CopyOnWriteArrayList的讲解,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧2019-01-01
最新评论