标签: MyBatis-Plus

3 篇文章

Mybatis-Plus的逻辑删除
参考: https://baomidou.com/pages/6b03c5/ 方法一:全局配置 mybatis-plus: global-config: db-config: logic-delete-field: flag # 全局逻辑删除的实体字段名(since 3.3.0,配置后可以忽略不配置步骤2) logic-delete-value: …
Mybatis-Plus的代码生成
可能的异常 mybatis-plus java.lang.NoClassDefFoundError: freemarker/template/Configuration mybatis-plus freemarker.template.Configuration mybatis Failed to determine a suitable driv…
mapper对象为空
Cannot invoke "*.mapper.*Mapper.insert(Object)" because "this.*Mapper" is null 一直报Mapper对象为空,是没有注入的原因 添加注解@Autowired即可 @Autowired private AuthorInfoMapper …