杭州市委办项管
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.

254 lines
7.7KB

  1. server:
  2. port: 8002
  3. servlet:
  4. context-path: /hzpm
  5. #最大并发数,默认200
  6. tomcat:
  7. threads:
  8. max: 600
  9. spring:
  10. mvc:
  11. pathmatch:
  12. matching-strategy: ant_path_matcher
  13. session:
  14. store-type: redis
  15. redis:
  16. namespace: "spring:session"
  17. redis:
  18. timeout: 5000
  19. host: localhost
  20. port: 6379
  21. database: 0
  22. password:
  23. jedis:
  24. pool:
  25. max-active: 200
  26. max-idle: 500
  27. min-idle: 8
  28. max-wait: 10000
  29. application:
  30. name: hzpm
  31. jackson:
  32. default-property-inclusion: non_null
  33. time-zone: GMT+8
  34. date-format: yyyy-MM-dd HH:mm:ss
  35. jpa:
  36. properties:
  37. hibernate:
  38. default_schema: PUBLIC
  39. hbm2ddl:
  40. auto: update
  41. show_sql: true
  42. show-sql: true
  43. hibernate:
  44. ddl-auto: update
  45. datasource:
  46. type: com.zaxxer.hikari.HikariDataSource
  47. driverClassName: dm.jdbc.driver.DmDriver
  48. url: jdbc:dm://10.54.38.191:5236/HZ_PROJECT_MANAGEMENT?zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-8
  49. username: XMXTGL
  50. password: XMXTGL@2023
  51. # 数据源
  52. hikari:
  53. # 是客户端等待连接池连接的最大毫秒数
  54. connection-timeout: 30000
  55. # 是允许连接在连接池中空闲的最长时间
  56. minimum-idle: 20
  57. # 配置最大池大小
  58. maximum-pool-size: 200
  59. # 是允许连接在连接池中空闲的最长时间(以毫秒为单位)
  60. idle-timeout: 60000
  61. # 池中连接关闭后的最长生命周期(以毫秒为单位)
  62. max-lifetime: 600000
  63. # 配置从池返回的连接的默认自动提交行为。默认值为true。
  64. auto-commit: true
  65. # 开启连接监测泄露
  66. leak-detection-threshold: 5000
  67. # 测试连接数据库
  68. connection-test-query: SELECT 1
  69. #设置上传 单个文件的大小
  70. servlet:
  71. multipart:
  72. max-file-size: 100MB
  73. max-request-size: 150MB
  74. mybatis-plus:
  75. configuration:
  76. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  77. global-config:
  78. db-config:
  79. logic-delete-value: true
  80. logic-not-delete-value: false
  81. logging:
  82. config: classpath:logback-spring.xml
  83. #日志配置
  84. level:
  85. root: info
  86. file:
  87. path: logs
  88. nd:
  89. cache:
  90. type: REDIS
  91. serializerType: ProtoStuff
  92. cacheNullVal: true
  93. def:
  94. keyPrefix: pm
  95. log:
  96. enabled: true
  97. type: DB
  98. # 文件存储
  99. file:
  100. storage-type: ALI_OSS
  101. ali:
  102. protocol: http://
  103. bucket: szxcxtoss
  104. urlPrefix: oss-cn-hangzhou-hzltzwy-d01-a.ops.hzegcxc.cn
  105. endpoint: oss-cn-hangzhou-hzltzwy-d01-a.ops.hzegcxc.cn
  106. accessKeyId: LNoIzKV82OvTJrKI
  107. accessKeySecret: QI9y9jGqAbPXGn3oz1JHlbvsJQEnUo
  108. rootPath: hzpm
  109. # 日志文件配置
  110. log:
  111. path: ./logs
  112. info:
  113. file-size: 50MB
  114. max-size: 30
  115. total-size: 2048MB
  116. error:
  117. file-size: 10MB
  118. max-size: 30
  119. total-size: 300MB
  120. swagger:
  121. enabled: true
  122. flowable:
  123. async-executor-activate: true
  124. #关闭一些不需要的功能服务
  125. rest-api-enabled: false
  126. # database-schema-update: false
  127. idm:
  128. enabled: false
  129. common:
  130. enabled: false
  131. dmn:
  132. enabled: false
  133. form:
  134. enabled: false
  135. app:
  136. enabled: false
  137. wflow:
  138. file:
  139. max-size: 20 #最大文件上传大小,MB
  140. sa-token:
  141. # token 名称 (同时也是cookie名称)
  142. token-name: wflowToken
  143. # token 有效期,单位s 默认30天, -1代表永不过期
  144. timeout: 172800
  145. # token 临时有效期 (指定时间内无操作就视为token过期) 单位: 秒
  146. activity-timeout: -1
  147. # 是否允许同一账号并发登录 (为true时允许一起登录, 为false时新登录挤掉旧登录)
  148. is-concurrent: true
  149. # 在多人登录同一账号时,是否共用一个token (为true时所有登录共用一个token, 为false时每次登录新建一个token)
  150. is-share: false
  151. # token风格
  152. token-style: uuid
  153. # 是否输出操作日志
  154. is-log: false
  155. #浙政钉公司顶级organizationCode
  156. organization:
  157. dept-visible-scopes:
  158. - GO_c1a6f8d5338e4a468337b08da76e2e31
  159. yxt:
  160. wsdl-url: classpath:wsdl-prod.xml
  161. #账号
  162. user-code: Lswqwqsdsjj121
  163. #密码
  164. password: Lssdsjj@20wqwqwqw21
  165. #音信通开关
  166. sms-enable: false
  167. tel-enable: false
  168. #省局联审 请求信息
  169. provincial:
  170. host: https://pms.zj.gov.cn/prometheus-zhejiang_foreign
  171. pushUrl: /api/v1/foreign/importantPro
  172. detailUrl: /api/v1/foreign/importantProView
  173. domainUrl: /api/v1/foreign/dominantUnit
  174. key: b5b2096953534a53991be4ea95f8cffa
  175. secret: 1bec9b77134d4962ac466fbe9696b897
  176. #天印服务器接口信息
  177. irs:
  178. is-search-app: true
  179. digital-resource-indicators:
  180. url: https://interface.zjzwfw.gov.cn/gateway/api/proxy/001003001029/dataSharing/99E2bic31KdXzaa7.htm
  181. interfaceName: 99E2bic31KdXzaa7
  182. app-key: A331101453557202109017383
  183. app-secret: 496f0f2a19994f76b4fd9dae087366c7
  184. seal-platform:
  185. project-id: 330001110
  186. project-secret: 70e512d40c8f440484db4acab181570a
  187. access-key: 42bcb49bea174986a3bfdfba7d005566
  188. secret-key: bebff29877d4443abd67fc4f8fb335d8
  189. api-url: https://bcdsg.zj.gov.cn:8443/restapi/prod/IC33000020220309000004/seal-platform/seal/v1/rest/sign/signPdf
  190. app-report:
  191. url: https://bcdsg.zj.gov.cn:8443/restapi/prod/IC33000020230427000001/irs-res-bill/report/pdfUrl
  192. appScret: BCDSGS_4ab4235d26a9a357170a39f3a13fd68c
  193. appKey: BCDSGA_d874c8e46b541eb4e8aac6510fd3351b
  194. push-app:
  195. url: https://interface.zjzwfw.gov.cn/gateway/api/proxy/001003001029/dataSharing/94wbaL1I1Pbz0648.htm
  196. appScret: 496f0f2a19994f76b4fd9dae087366c7
  197. appKey: A331101453557202109017383
  198. search-app:
  199. url: https://interface.zjzwfw.gov.cn/gateway/api/001003001029/dataSharing/XS8daav3bcemZ3Ra.htm
  200. appScret: 496f0f2a19994f76b4fd9dae087366c7
  201. appKey: A331101453557202109017383
  202. province-gov:
  203. can-search: true
  204. interfaceName: 62vd5jAdM0b7Gr00
  205. url: https://interface.zjzwfw.gov.cn/gateway/api/proxy/001003001029/dataSharing/62vd5jAdM0b7Gr00.htm
  206. appSecret: 496f0f2a19994f76b4fd9dae087366c7
  207. appKey: A331101453557202109017383
  208. push-project-detail:
  209. url: https://interface.zjzwfw.gov.cn/gateway/api/proxy/001003001029/dataSharing/3XN9R93Pva6db7sf.htm
  210. interfaceName: 3XN9R93Pva6db7sf
  211. appSecret: 496f0f2a19994f76b4fd9dae087366c7
  212. appKey: A331101453557202109017383
  213. core-biz:
  214. url: https://interface.zjzwfw.gov.cn/gateway/api/001008012012001/dataSharing/Fc3re2cq7r64Qfa7.htm
  215. interfaceName: Fc3re2cq7r64Qfa7
  216. appSecret: 496f0f2a19994f76b4fd9dae087366c7
  217. appKey: A331101453557202109017383
  218. interface-refresh:
  219. method: POST
  220. request-token-url: http://interface.zjzwfw.gov.cn/gateway/app/refreshTokenByKey.htm
  221. refresh-token-url: http://interface.zjzwfw.gov.cn/gateway/app/refreshTokenBySec.htm
  222. interface-local-refresh:
  223. method: GET
  224. request-token-url: https://interface.ls.local/a/api/requestTokenKey?appKey={appKey}&requestTime={requestTime}&sign={sign}
  225. refresh-token-url: https://interface.ls.local/a/api/refreshTokenKey?appKey={appKey}&requestTime={requestTime}&sign={sign}
  226. hostname: iZ6mx01gyeodd80imxd2gbZ
  227. project:
  228. push-url: http://10.53.168.41:38088/open/api/v1/project-receive/save
  229. no-effective-url: http://10.53.168.41:38088/open/api/v1/project-receive/not-effective
  230. delete-all-url: http://10.53.168.41:38088/open/api/v1/project-receive/delete-all
  231. login:
  232. phone-verify-code:
  233. skip: false
  234. url: http://60.188.225.145/login
  235. web:
  236. url: http://60.188.225.145
  237. mh:
  238. sso:
  239. client-id: ningda-74a5e5da-3bc3-414a-b9e6-004b7d87e310
  240. client-secret: ningda-df746ce4-0c79-4242-b3c7-90ff8630c9742c6727cd-3ae7-48ae-87ad-2b39188ebabd
  241. api-host: http://10.54.38.13:8081/mh-gateway/auth-single
  242. expert-qr-code-url: http://10.54.38.13:8081/mh-gateway/problem/expert/getExpertQrCode
  243. file:
  244. detail-url: http://10.54.38.13:8081/mh-gateway/oss/ossfile/getFileInfoList
  245. down-url: http://10.54.38.13:8081/mh-gateway/oss/oss/downloadFileNotLogin