mybatis: mapper-locations: classpath:mapper/*.xml // mapper文件位置 type-aliases-package: com.xxx.model // 根据别名查找model位置 check-config-location: true // 运行时检查mapper是否存在 configuration: map-underscore-to-camel-case: true // 将表的下划线列名匹配到驼峰式属性名
来源:https://www.cnblogs.com/leon-a/p/12002670.html