SpringBoot + MybatisPlus使用枚举类型enum报错:No enum constant xxx mybatis-plus版本:3.4.0 entity中使用了枚举类型接收字段,执行报错 org.mybatis.spring.MyBatisSystemException: nested excep... 2023年11月21日 mybatis 浏览量:224 次 发表评论 阅读全文
Mybatis-Plus中使用JacksonTypeHandler报错java.util.LinkedHashMap cannot be cast to xxx 背景:mysql中的一个字段类型为json,使用mybatis-plus,entity中该字段定义为List<CusDTO> extra,并指定了注解 @TableField(typeHa... 2023年4月28日 mybatis 浏览量:217 次 发表评论 阅读全文
SpringBoot开启Mybatis二级缓存 大家知道,Mybatis默认二级缓存是关闭的,如果我们想打开二级缓存,只需要2步。 1.在application.properties中加上以下配置 mybatis.configuration.cac... 2020年6月10日 mybatis 浏览量:2,897 次 发表评论 阅读全文
MyBatis PageHelper设置分页不起作用 引入pagehelper的包后,设置分页PageHelper.startPage(1,10); 居然不起作用,还是检索的所有结果。。。 百度了半天,发现完全没有问题。。之前也有项目用过,写法不可能有问... 2019年11月22日 mybatis 浏览量:1,634 次 发表评论 阅读全文
Spring Boot启动报错:Cannot determine embedded database driver class for database type NONE Spring Boot启动报错:Cannot determine embedded database driver class for database type NONE 报这个错的原因是用到了数据... 2019年4月17日 mybatis 浏览量:759 次 发表评论 阅读全文
SpringBoot整合mybatis报错Invalid bound statement (not found): com.dao.DeptDao.findAll 这个报错花了我很长时间,网上的办法我都试了也没用,感觉自己各个地方也都没有问题。target文件夹里mapper.xml也都生成了。最后在源码里debug发现,好像mapper.xml里的内容都没读进... 2019年4月15日 mybatis 浏览量:837 次 发表评论 阅读全文
Mybatis插件PageHelper分页查询使用方法 Mybatis的一个插件,PageHelper,非常方便mybatis分页查询。国内牛人的一个开源项目,官方文档有中文文档,这个非常好。具体可以参照: https://github.com/pageh... 2018年11月30日 mybatis 浏览量:721 次 发表评论 阅读全文
SpringBoot + Mybatis 在控制台输出sql语句 1.如果使用application.properties 在配置中添加: logging.level.com.looedu.mapper=debug 注意这里的com.looedu.mapper不是固... 2018年11月27日 mybatis 浏览量:2,835 次 发表评论 阅读全文