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.
 
 
 
 
 

52 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. # @{link} https://github.com/abel533
  24. #Mybatis
  25. mybatis:
  26. type-aliases-package: com.iformall.domain.po
  27. mapper-locations: classpath:mapper/*Mapper.xml
  28. configuration:
  29. map-underscore-to-camel-case: true
  30. cache-enabled: true
  31. lazy-loading-enabled: true
  32. use-generated-keys: true
  33. default-fetch-size: 100
  34. default-statement-timeout: 10
  35. #PageHelper
  36. pagehelper:
  37. helperDialect: mysql
  38. reasonable: false
  39. supportMethodsArguments: true
  40. params: count=countSql
  41. offset-as-page-num: true
  42. page-size-zero: true
  43. row-bounds-with-count: true
  44. mapper:
  45. mappers:
  46. - com.iformall.common.CommonMapper
  47. version: @project.version@