application.yml 458 Bytes
server:
  port: 8084
  servlet:
    context-path: /task-schedule
spring:
  application:
    name: task-schedule
  profiles:
    active: @activatedProperties@
  messages:
    basename: message


mybatis:
  mapper-locations:
    - classpath*:com/fedex/connect/**/mapper/**/*.xml
  configuration:
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
    #开启驼峰与下划线转换
    map-underscore-to-camel-case: true
    call-setters-on-nulls: true