Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

53 строки
1.1 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. # PageHelper
  37. pagehelper:
  38. helperDialect: mysql
  39. reasonable: false
  40. supportMethodsArguments: true
  41. params: count=countSql
  42. offset-as-page-num: true
  43. page-size-zero: true
  44. row-bounds-with-count: true
  45. mapper:
  46. mappers:
  47. - com.iformall.common.CommonMapper
  48. version: @project.version@