You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

54 lines
1.2 KiB

  1. server:
  2. port: 8000
  3. servlet:
  4. context-path: /B
  5. spring:
  6. application:
  7. name: mallink
  8. profiles:
  9. active: dev
  10. jackson:
  11. date-format: yyyy-MM-dd HH:mm:ss
  12. time-zone: GMT+8
  13. default-property-inclusion: non_null
  14. # rocketmq:
  15. # nameServer: 127.0.0.1:9876
  16. # producer:
  17. # retry-times-when-send-async-failed: 0
  18. # send-msg-timeout: 300000
  19. # compress-msg-body-over-howmuch: 4096
  20. # max-message-size: 4194304
  21. # retry-another-broker-when-not-store-ok: false
  22. # retry-times-when-send-failed: 2
  23. # MybatisPlus
  24. mybatis-plus:
  25. mapper-locations: classpath:mapper/*Mapper.xml
  26. global-config:
  27. db-config:
  28. id-type: id_worker
  29. field-strategy: not_null
  30. db-type: mysql
  31. configuration:
  32. jdbc-type-for-null: 'null'
  33. cache-enabled: false
  34. call-setters-on-nulls: true
  35. type-aliases-package: com.iformall.domain.po
  36. type-enums-package: com.iformall.enums
  37. # PageHelper
  38. pagehelper:
  39. helperDialect: mysql
  40. reasonable: false
  41. supportMethodsArguments: true
  42. params: count=countSql
  43. offset-as-page-num: true
  44. page-size-zero: true
  45. row-bounds-with-count: true
  46. mapper:
  47. mappers:
  48. - com.iformall.common.CommonMapper
  49. version: 1.0