All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xsheng.springboot-faster-system.1.1.6.source-code.system-config.yml Maven / Gradle / Ivy

The newest version!
spring:
  i18n:
    cache-duration: PT5M
  sql:
    init:
      schema-locations:
        - classpath:sql/schema.sql
        - classpath:sql/*-activiti.mysql.*.sql
        - classpath:sql/quartz.sql
      data-locations:
        - classpath:sql/data.sql
      mode: never # always , never
  data:
    redis:
      host: 127.0.0.1
      port: 6379
      password:
      database: 0
      timeout: 20s
      lettuce:
        pool:
          min-idle: 0
          max-idle: 8
          max-wait: -1
          max-active: 8
mybatis-flex:
  mapper-locations:
    - classpath*:/mapper/*.xml
camunda:
  bpm:
    generic-properties:
      properties:
        historyTimeToLive: P36500D
        skipIsolationLevelCheck: true
    database:
      type: mysql
      schema-update: false
    auto-deployment-enabled: false # 是否自动部署 resources 下的 bpmn文件
    admin-user:
      id: admin
      password: 12345678
      first-name: 管理员
    webapp:
      #      application-path: /my/application/path #web的入口地址,默认/camunda
      index-redirect-enabled: false #关闭从/跳转到index.html
    enabled: true
management:
  endpoints:
    enabled-by-default: false
    web:
      base-path: "/check"
      discovery:
        enabled: false
  endpoint:
    health:
      enabled: true
  health:
    defaults:
      enabled: false




© 2015 - 2024 Weber Informatics LLC | Privacy Policy