spring: profiles: active: dev application: name: springbootstart-web mvc: #视图路径配置 view: prefix: / suffix: .html servlet: path: /api/ mybatis-plus: mapper-locations: classpath*:mapper/**/*.xml #实体扫描,多个package用逗号或者分号分隔 type-aliases-package: com.zhehekeji.*.entity configuration: map-underscore-to-camel-case: true #下划线转驼峰 cache-enabled: false #不加这个查询数据为空时,字段将被隐藏 mapper: identity: MYSQL not-empty: true style: normal