电子档案
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.

125 lines
2.9 KiB

  1. server:
  2. port: 11100
  3. javax:
  4. xml:
  5. accessExternalSchema: all
  6. accessExternalDTD: all
  7. spring:
  8. freemarker:
  9. check-template-location: false
  10. profiles:
  11. active: dev
  12. jackson:
  13. time-zone: GMT+8
  14. data:
  15. redis:
  16. repositories:
  17. enabled: false
  18. main:
  19. allow-bean-definition-overriding: true
  20. servlet:
  21. multipart:
  22. max-file-size: 10MB
  23. max-request-size: 1024MB
  24. #配置 Jpa
  25. jpa:
  26. open-in-view: true
  27. properties:
  28. hibernate:
  29. hbm2ddl:
  30. auto: none
  31. show-sql: true
  32. #达梦 jpa 配置
  33. # jpa:
  34. # database-platform: org.hibernate.dialect.DmDialect
  35. # hibernate:
  36. # naming:
  37. # physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
  38. # ddl-auto: none
  39. # open-in-view: false
  40. # properties:
  41. # hibernate:
  42. # show_sql: true
  43. # dialect: org.hibernate.dialect.DmDialect
  44. redis:
  45. #数据库索引
  46. database: ${REDIS_DB:1}
  47. host: ${REDIS_HOST:192.168.99.107}
  48. port: ${REDIS_PORT:6379}
  49. password: ${REDIS_PWD:ftzn83560792}
  50. #连接超时时间
  51. timeout: 5000
  52. task:
  53. pool:
  54. # 核心线程池大小
  55. core-pool-size: 10
  56. # 最大线程数
  57. max-pool-size: 30
  58. # 活跃时间
  59. keep-alive-seconds: 60
  60. # 队列容量
  61. queue-capacity: 50
  62. code:
  63. expriration: 300
  64. #是否开启 swagger-ui
  65. swagger:
  66. enabled: true
  67. #ureport
  68. ureport:
  69. disableHttpSessionReportCache: true
  70. file-store-dir: ureportfiles
  71. # IP 本地解析
  72. ip:
  73. local-parsing: true
  74. #密码加密传输 此处为私钥
  75. rsa:
  76. private_key: MIIBUwIBADANBgkqhkiG9w0BAQEFAASCAT0wggE5AgEAAkEA0vfvyTdGJkdbHkB8mp0f3FE0GYP3AYPaJF7jUd1M0XxFSE2ceK3k2kw20YvQ09NJKk+OMjWQl9WitG9pB6tSCQIDAQABAkA2SimBrWC2/wvauBuYqjCFwLvYiRYqZKThUS3MZlebXJiLB+Ue/gUifAAKIg1avttUZsHBHrop4qfJCwAI0+YRAiEA+W3NK/RaXtnRqmoUUkb59zsZUBLpvZgQPfj1MhyHDz0CIQDYhsAhPJ3mgS64NbUZmGWuuNKp5coY2GIj/zYDMJp6vQIgUueLFXv/eZ1ekgz2Oi67MNCk5jeTF2BurZqNLR3MSmUCIFT3Q6uHMtsB9Eha4u7hS31tj1UWE+D+ADzp59MGnoftAiBeHT7gDMuqeJHPL4b+kC+gzV4FGTfhR9q3tTbklZkD2A==
  77. # 内存用户缓存配置
  78. user-cache:
  79. # 最小回收数(当缓存数量达到此值时进行回收)
  80. min-evictable-size: 512
  81. # 最小回收间隔
  82. min-evictable-interval: 1800000
  83. # 最小存活时间 (ms)
  84. min-idle-time: 3600000
  85. # 手持机参数
  86. #hand-held:
  87. # ip: 127.0.0.1:8057
  88. webSocket:
  89. netty:
  90. port: 7071
  91. path: /webSocket
  92. readerIdleTime: 30 #读空闲超时时间设置(Netty心跳检测配置)
  93. writerIdleTime: 30 #写空闲超时时间设置(Netty心跳检测配置)
  94. allIdleTime: 30 #读写空闲超时时间设置(Netty心跳检测配置)
  95. flowable:
  96. async-executor-activate: false #关闭定时任务job
  97. database-schema-update: true #当flowable发现库与数据库结构不一致时 会自动更新表结构到最新版本
  98. common:
  99. app:
  100. idm-url: http://localhost:11100/expense/
  101. idm-admin:
  102. user: admin
  103. password: test