MyBatis-Plus
是摩卡不是抹茶呀
纯粹地爱Java
展开
-
关于 MyBatis @MapperScan 配置
问题org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): top.yangzefeng.usercenter.user.service.UserService.getById解决方案:常用配置:@MapperScan("top.yangzefeng.usercenter.**.mapp...原创 2020-03-20 15:46:21 · 3499 阅读 · 0 评论 -
MyBatis-Plus代码生成器配置及application文件配置
一)、代码生成器配置<dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity-engine-core</artifactId> <version>2.0</version></dependenc...原创 2020-03-17 21:33:28 · 1896 阅读 · 0 评论 -
关于Mybatis-Plus org.apache.ibatis.binding.BindingException问题解决
问题描述org.apache.ibatis.binding.BindingExceptionInvalid bound statement (not found): com.demo.server.system.mapper.UserMapper.findUserDetailPage解决方案:确定是否有配置mapper-locations检查application配置文件是否配置了ma...原创 2020-03-15 21:32:00 · 1711 阅读 · 0 评论 -
Spring Boot 解决MyBatis-Plus整合Druid 出现的nested exception is java.sql.SQLFeatureNotSupportedException问题
问题分析Druid相关issuenested exception is java.sql.SQLFeatureNotSupportedException问题的出现,主要是因为实体类的日期字段使用的是LocalDateTime类型解决方案:调整MyBatis-Plus相关版本mybatis-plus-generator是关键,不能缺少,否则一样会出现SQLFeatureNotSupport...原创 2019-12-13 13:14:16 · 7281 阅读 · 2 评论 -
关于MyBatis-Plus自动更新时间的小坑
MySQL数据表`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',`update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间'说明:在不做调整的情况下,如果...原创 2019-12-01 07:48:31 · 10145 阅读 · 0 评论 -
MyBatis-Plus配置教程 使用@Import来简化Bean对象注入
/** * MyBatis-Plus配置类 * 当注入的Bean对象是简单的new方式注入,那么可以采用@Import的方式来简化代码 * * @author MoCha * @date 2019/9/21 */@Configuration@EnableTransactionManagement@MapperScan("top.example.**.dao")@Import(P...原创 2019-11-12 16:18:37 · 1080 阅读 · 0 评论