application.yml 842 Bytes
server:
  address: 0.0.0.0
  port: 2019

#mysql
spring:
  datasource:
    url: jdbc:mysql://gicc-db:3306/shchyy?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8
    username: chyy_demo
    password: Waw8DXh3fJJ-
    driver-class-name: com.mysql.cj.jdbc.Driver

#mybatis-plus
mybatis-plus:
  global-config:
    db-config:
      id-type: id_worker
      update-strategy: [not_null, not_empty]
      table-underline: true
      logic-delete-value: 1
      logic-not-delete-value: 0
      capital-mode: true
  mapper-locations: classpath:mapper/*.xml
  type-aliases-package: com.sict.data.model
  configuration:
    map-underscore-to-camel-case: true
    cache-enabled: false
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl