1、在mybatis中定义不存在字段//引入
import org.springframework.data.annotation.Transient;
//使用
@Transient
private List<AwardGui...
阅读全文...
MyBatis的缓存
1、MyBatis的一级缓存一级缓存是SqlSession级别的,通过同一个SqlSession查询的数据会被缓存,下次查询相同的数据,就会从缓存中直接获取,不会从数据库重新访问使一级缓存失效的四种情况:不同的SqlSession对应不同的一级缓存同一个...
阅读全文...
阅读全文...
MyBatis配置文件
项目的结构目录<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration PUBLIC "-//mybatis.org...
阅读全文...
阅读全文...