随笔分类 - Mybatis
摘要:https://baomidou.com/guide 集成springboot 依赖 核心依赖spring-boot-starter、lombo、mybatis-plus-boot-starter、mysql 使用Mybatis-plus代替Mybatis的依赖 <dependencies> <!-
阅读全文
摘要:一级缓存 相同的SQL语句,会优先命中一级缓存,同一个Sqlsession中共享 一级缓存配置 SESSION:默认,当前session有效 STATEMENT:只对当前satement有效,每次都查询数据库 <setting name="localCacheScope" value="STATEM
阅读全文
摘要:mapper.xml <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mappe
阅读全文