mapperLocations
Mybatis mapper对应的XML文件位置.如果是多模块需要以 classpath*:
开头
mybatis-plus:
mapper-locations: classpath*:com/naruto/mamba/mapper/*
typeAliasesPackage
Mybatis中别名包扫描路径,通过该属性可以给包中类注册别名,注册后在mapper对应的XML文件中可以直接使用类名,而不用使用全限定的类名。
type-aliases-package: com.naruto.mamba
fieldStrategy
字段验证策略,该策略约定了如何产出注入的SQL,涉及insert,update以及wrapper内部的entity属性生成的 where 条件。
- IGNORE
为null时候也产出sql,比如可能会生成where age=null, name=null
语句 - NOT_NULL(默认)
为null时候不产生sql - NOT_EMPTY
<if test="%s!=null and %s!=''">
, 为null
或者‘’
时候都不产生sql