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 次 发表评论 阅读全文
SpringBootSpringBoot配置热部署后mybatis报错this web application instance has been stopped already. Could not load [mybatis/mapper/] 目前这个项目快完了,才想起来弄下热部署,也是为以后项目方便吧,按照网上的教程 1.在pom文件里增加依赖 <!-- 热部署 --> <dependency> <group... 2019年7月24日 浏览量:3,016 次 发表评论 阅读全文
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 次 发表评论 阅读全文
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 次 发表评论 阅读全文