# mybatis配置
mybatis:
# 搜索指定包别名
typeAliasesPackage: com.njcdv.system
# 配置mapper的扫描,找到所有的mapper.xml映射文件
mapperLocations: classpath:mapper/**/*.xml
#SQL日志打印
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
map-underscore-to-camel-case: true