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

264 строки
7.7KB

  1. server:
  2. port: 38888
  3. servlet:
  4. context-path: /pm
  5. spring:
  6. mvc:
  7. pathmatch:
  8. matching-strategy: ant_path_matcher
  9. session:
  10. store-type: redis
  11. redis:
  12. namespace: "spring:session"
  13. timeout: 864000
  14. redis:
  15. timeout: 5000
  16. host: 47.98.125.47
  17. port: 26379
  18. database: 4
  19. password: Ndkj1234
  20. jedis:
  21. pool:
  22. max-active: 200
  23. max-idle: 500
  24. min-idle: 8
  25. max-wait: 10000
  26. application:
  27. name: pm
  28. jackson:
  29. default-property-inclusion: non_null
  30. time-zone: GMT+8
  31. date-format: yyyy-MM-dd HH:mm:ss
  32. jpa:
  33. properties:
  34. hibernate:
  35. default_schema: PUBLIC
  36. hbm2ddl:
  37. auto: update
  38. show_sql: true
  39. show-sql: true
  40. hibernate:
  41. ddl-auto: update
  42. datasource:
  43. type: com.alibaba.druid.pool.DruidDataSource
  44. driverClassName: com.kingbase8.Driver
  45. # 数据源
  46. druid:
  47. url: jdbc:kingbase8://120.26.44.207:54321/nd_project_management?zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-8
  48. username: SYSTEM
  49. password: Ndkj1234
  50. # 初始连接数
  51. initialSize: 5
  52. # 最小连接池数量
  53. minIdle: 10
  54. # 最大连接池数量
  55. maxActive: 20
  56. # 配置获取连接等待超时的时间
  57. maxWait: 60000
  58. # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
  59. timeBetweenEvictionRunsMillis: 60000
  60. # 配置一个连接在池中最小生存的时间,单位是毫秒
  61. minEvictableIdleTimeMillis: 300000
  62. # 配置一个连接在池中最大生存的时间,单位是毫秒
  63. maxEvictableIdleTimeMillis: 900000
  64. # 配置检测连接是否有效
  65. #mysql使用:SELECT 1 FROM DUAL
  66. validationQuery: SELECT 1
  67. testWhileIdle: true
  68. testOnBorrow: false
  69. testOnReturn: false
  70. webStatFilter:
  71. enabled: true
  72. statViewServlet:
  73. enabled: true
  74. # 设置白名单,不填则允许所有访问
  75. allow:
  76. url-pattern: /druid/*
  77. # 控制台管理用户名和密码
  78. login-username: admin
  79. login-password: admin
  80. filter:
  81. stat:
  82. enabled: true
  83. # 慢SQL记录
  84. log-slow-sql: true
  85. slow-sql-millis: 1000
  86. merge-sql: true
  87. wall:
  88. config:
  89. multi-statement-allow: true
  90. #设置上传 单个文件的大小
  91. servlet:
  92. multipart:
  93. max-file-size: 100MB
  94. max-request-size: 150MB
  95. mybatis-plus:
  96. configuration:
  97. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  98. global-config:
  99. db-config:
  100. logic-delete-value: true
  101. logic-not-delete-value: false
  102. logging:
  103. config: classpath:logback-spring.xml
  104. #日志配置
  105. level:
  106. root: info
  107. file:
  108. path: logs
  109. nd:
  110. cache:
  111. type: REDIS
  112. serializerType: ProtoStuff
  113. cacheNullVal: true
  114. def:
  115. keyPrefix: pm
  116. log:
  117. enabled: true
  118. type: DB
  119. # 文件存储
  120. file:
  121. storage-type: ALI_OSS
  122. ali:
  123. protocol: https://
  124. bucket: devplat
  125. urlPrefix: oss-cn-hangzhou.aliyuncs.com
  126. endpoint: oss-cn-hangzhou.aliyuncs.com
  127. accessKeyId: LTAI4GL7uypycnBjiRn55rMG
  128. accessKeySecret: qwYC7bW9bkStsko7qkLVnToAzj0Y98
  129. # 日志文件配置
  130. log:
  131. path: ./logs
  132. info:
  133. file-size: 50MB
  134. max-size: 5
  135. total-size: 200MB
  136. error:
  137. file-size: 10MB
  138. max-size: 5
  139. total-size: 50MB
  140. swagger:
  141. enabled: true
  142. flowable:
  143. async-executor-activate: true
  144. #关闭一些不需要的功能服务
  145. rest-api-enabled: false
  146. idm:
  147. enabled: false
  148. common:
  149. enabled: false
  150. dmn:
  151. enabled: false
  152. form:
  153. enabled: false
  154. app:
  155. enabled: false
  156. wflow:
  157. file:
  158. max-size: 20 #最大文件上传大小,MB
  159. sa-token:
  160. # token 名称 (同时也是cookie名称)
  161. token-name: wflowToken
  162. # token 有效期,单位s 默认30天, -1代表永不过期
  163. timeout: 172800
  164. # token 临时有效期 (指定时间内无操作就视为token过期) 单位: 秒
  165. activity-timeout: -1
  166. # 是否允许同一账号并发登录 (为true时允许一起登录, 为false时新登录挤掉旧登录)
  167. is-concurrent: true
  168. # 在多人登录同一账号时,是否共用一个token (为true时所有登录共用一个token, 为false时每次登录新建一个token)
  169. is-share: false
  170. # token风格
  171. token-style: uuid
  172. # 是否输出操作日志
  173. is-log: false
  174. #浙政钉公司顶级organizationCode
  175. organization:
  176. dept-visible-scopes:
  177. - GO_ff70e47bae684fdba0d64f4acab85661
  178. yxt:
  179. # wsdl-url: http://115.239.137.23:9501/ws/v1?wsdl
  180. wsdl-url: classpath:/wsdl.xml
  181. #账号
  182. user-code: hzndkj
  183. #密码
  184. password: hzndkj@2021
  185. #音信通开关
  186. sms-enable: true
  187. tel-enable: true
  188. #省局联审 请求信息
  189. provincial:
  190. # host: http://zj.ningdatech.com/prometheus-zhejiang_foreign
  191. host: http://223.4.72.75/prometheus-zhejiang_foreign
  192. pushUrl: /api/v1/foreign/importantPro
  193. detailUrl: /api/v1/foreign/importantProView
  194. domainUrl: /api/v1/foreign/dominantUnit
  195. key: 7fb48b518c6044a5a44deddd11b445e3
  196. secret: ced8fff70018413c9516c58f95885624
  197. #天印服务器接口信息
  198. irs:
  199. is-search-app: false
  200. digital-resource-indicators:
  201. url: https://interface.zjzwfw.gov.cn/gateway/api/proxy/001003001029/dataSharing/99E2bic31KdXzaa7.htm
  202. interface-name: 99E2bic31KdXzaa7
  203. app-key: A331101453557202109017383
  204. app-secret: 496f0f2a19994f76b4fd9dae087366c7
  205. seal-platform:
  206. project-id: 330001110
  207. project-secret: 70e512d40c8f440484db4acab181570a
  208. access-key: 42bcb49bea174986a3bfdfba7d005566
  209. secret-key: bebff29877d4443abd67fc4f8fb335d8
  210. api-url: https://bcdsg.zj.gov.cn:8443/restapi/prod/IC33000020220309000004/seal-platform/seal/v1/rest/sign/signPdf
  211. app-report:
  212. url: https://bcdsg.zj.gov.cn:8443/restapi/prod/IC33000020230427000001/irs-res-bill/report/pdfUrl
  213. appScret: BCDSGS_4ab4235d26a9a357170a39f3a13fd68c
  214. appKey: BCDSGA_d874c8e46b541eb4e8aac6510fd3351b
  215. push-app:
  216. url: https://interface.zjzwfw.gov.cn/gateway/api/proxy/001003001029/dataSharing/94wbaL1I1Pbz0648.htm
  217. appScret: 496f0f2a19994f76b4fd9dae087366c7
  218. appKey: A331101453557202109017383
  219. search-app:
  220. url: https://interface.zjzwfw.gov.cn/gateway/api/001003001029/dataSharing/XS8daav3bcemZ3Ra.htm
  221. appScret: 496f0f2a19994f76b4fd9dae087366c7
  222. appKey: A331101453557202109017383
  223. province-gov:
  224. can-search: false
  225. url: https://interface.zjzwfw.gov.cn/gateway/api/proxy/001003001029/dataSharing/62vd5jAdM0b7Gr00.htm
  226. interfaceName: 62vd5jAdM0b7Gr00
  227. appSecret: 496f0f2a19994f76b4fd9dae087366c7
  228. appKey: A331101453557202109017383
  229. push-project-detail:
  230. url: https://interface.zjzwfw.gov.cn/gateway/api/proxy/001003001029/dataSharing/3XN9R93Pva6db7sf.htm
  231. interfaceName: 3XN9R93Pva6db7sf
  232. appSecret: 496f0f2a19994f76b4fd9dae087366c7
  233. appKey: A331101453557202109017383
  234. core-biz:
  235. url: https://interface.zjzwfw.gov.cn/gateway/api/001008012012001/dataSharing/Fc3re2cq7r64Qfa7.htm
  236. interfaceName: Fc3re2cq7r64Qfa7
  237. appSecret: 496f0f2a19994f76b4fd9dae087366c7
  238. appKey: A331101453557202109017383
  239. interface-refresh:
  240. method: POST
  241. request-token-url: https://interface.zjzwfw.gov.cn/gateway/app/refreshTokenByKey.htm?appKey={appKey}&requestTime={requestTime}&sign={sign}
  242. refresh-token-url: https://interface.zjzwfw.gov.cn/gateway/app/refreshTokenBySec.htm?appKey={appKey}&requestTime={requestTime}&sign={sign}
  243. interface-local-refresh:
  244. method: GET
  245. request-token-url: https://interface.ls.local/a/api/requestTokenKey?appKey={appKey}&requestTime={requestTime}&sign={sign}
  246. refresh-token-url: https://interface.ls.local/a/api/refreshTokenKey?appKey={appKey}&requestTime={requestTime}&sign={sign}
  247. hostname: iZbp13nwyvib53j4j1p2xoZ
  248. login:
  249. phone-verify-code:
  250. skip: true
  251. url: http://lspm.ningdatech.com/login