mybatis配置
mybatis:
type-aliases-package: com.imooc.pojo #所有POJO类所在包路径
mapper-locations: classpath:mapper/*.xml #mapper映射文件
configuration:
log-impl: org.apache.ibatis.loggin.stdout.StdOutImpl
通用Mapper配置
mapper:
mappers: com.imooc.my.mapper.MyMapper
not-empty: false # 在进行数据库操作的时候,判断表达式 username !=null,是否追加
identity: MYSQL