You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
backend-duoji-monitor/web/target/classes/application.yml

24 lines
573 B
YAML

4 years ago
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