application.yml 563 字节
Newer Older
Q
qinxiaodong@pannk.com 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
server:
  port: 9999
  servlet:
    context-path: /
spring:
  profiles:
    active: dev
  activiti:
    database-schema-update: true
    db-history-used: true
    history-level: full
mybatis-plus:
  mapper-locations: classpath*:/mapper/**/*.xml
  type-aliases-package: com.pannk.*.entity
  global-config:
    db-config:
      id-type: auto
      logic-delete-value: -1
      logic-not-delete-value: 0
    banner: false
  configuration:
    map-underscore-to-camel-case: true
    cache-enabled: false
    call-setters-on-nulls: true
    jdbc-type-for-null: 'null'