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

65 строки
1.4 KiB

  1. server:
  2. port: 9000
  3. servlet:
  4. context-path: /
  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. servlet:
  15. multipart:
  16. max-file-size: 2MB
  17. max-request-size: 2MB
  18. cache:
  19. type: REDIS
  20. cache-names: redis_cache #缓存的名字(可以不指定)
  21. redis:
  22. time-to-live: 60000ms #很重要,缓存的有效时间,以便缓存的过期(单位为毫秒)
  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. #PageHelper
  35. pagehelper:
  36. helperDialect: mysql
  37. reasonable: false
  38. supportMethodsArguments: true
  39. params: count=countSql
  40. offset-as-page-num: true
  41. page-size-zero: true
  42. row-bounds-with-count: true
  43. mapper:
  44. mappers:
  45. - com.iformall.common.CommonMapper
  46. pay:
  47. real: true
  48. aws:
  49. clientRegion: cn-northwest-1
  50. bucketName: iformall-net
  51. access: ENC(3gx5ghDFBqGrEhO3Wf8aYmXsnwHO7Cj3HNKJGOeUj0o=)
  52. secret: ENC(HVKIJwCJKVXLlUpGlQPwNqJOlnpxn4xYuy91SH0seTSm2uAttIQHvA49fXWWax90v5wloIk0QuU=)
  53. jasypt:
  54. encryptor:
  55. password: oRqdnDbK5pj3eMmB
  56. version: @project.version@