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.
 
 
 
 
 

61 lines
1.2 KiB

  1. server:
  2. port: 7000
  3. servlet:
  4. context-path: /C
  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. mail:
  15. host: smtp.exmail.qq.com
  16. username: wuguoqiang@iformall.com
  17. password: SL4ZBgG3pXWqpAk3 # 授权密码
  18. properties:
  19. mail:
  20. smtp:
  21. auth: true
  22. starttls:
  23. enable: true
  24. # @{link} https://github.com/abel533
  25. #Mybatis
  26. mybatis:
  27. type-aliases-package: com.iformall.domain.po
  28. mapper-locations: classpath:mapper/*Mapper.xml
  29. configuration:
  30. map-underscore-to-camel-case: true
  31. cache-enabled: true
  32. lazy-loading-enabled: true
  33. use-generated-keys: true
  34. default-fetch-size: 100
  35. default-statement-timeout: 10
  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. pay:
  49. real: true
  50. jasypt:
  51. encryptor:
  52. password: oRqdnDbK5pj3eMmB
  53. version: @project.version@