This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
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