| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 | server:  port: 8706  tomcat:    uri-encoding: utf-8    threads:      min-spare: 20      max: 800    accept-count: 200    max-connections: 10000  servlet:    encoding:      charset: utf-8spring:  thymeleaf:    cache: false  datasource:    dynamic:      primary: his      strict: false      datasource:        his:          url: "jdbc:sqlserver://172.16.32.168:1433;databaseName=thxyhisdb"          username: "sa"          password:          driver-class-name: "com.microsoft.sqlserver.jdbc.SQLServerDriver"        lis:          url: "jdbc:sqlserver://172.16.32.178:1433;databaseName=eLimsCore"          username: "sa"          password: "hnthxyyy"          driver-class-name: "com.microsoft.sqlserver.jdbc.SQLServerDriver"        dev:          url: "jdbc:sqlserver://172.16.32.179:1433;databaseName=thxyhisdb"          username: "sa"          password:          driver-class-name: "com.microsoft.sqlserver.jdbc.SQLServerDriver"    druid:      #type: com.alibaba.druid.pool.DruidDataSource      #初始化时建立物理连接的个数。初始化发生在显示调用init方法,或者第一次getConnection时      initial-size: 40      #最大连接池数量      max-active: 100      #最小连接池数量      min-idle: 40      #获取连接时最大等待时间,单位毫秒      max-wait: 60000      #使用非公平锁。      use-unfair-lock: true      #用来检测连接是否有效的sql,要求是一个查询语句。      validation-query: SELECT 1      #建议配置为true,不影响性能,并且保证安全性。申请连接的时候检测,如果空闲时间大于timeBetweenEvictionRunsMillis,执行validationQuery检测连接是否有效。      test-while-idle: true      #申请连接时执行validationQuery检测连接是否有效,      test-on-borrow: true      #归还连接时执行validationQuery检测连接是否有效,      test-on-return: false      #Destroy线程会检测连接的间隔时间,testWhileIdle的判断依据,详细看testWhileIdle属性的说明      time-between-eviction-runs-millis: 60000      #配置一个连接在池中最小生存的时间,单位是毫秒      min-evictable-idle-time-millis: 300000      #监控统计用的filter:stat  日志用的filter:log4j    防御sql注入的filter:wall      filters: stat      #是否缓存preparedStatement,也就是PSCache,在mysql5.5以下的版本中没有PSCache功能,建议关闭掉      pool-prepared-statements: false      #要启用PSCache,必须配置大于0,当大于0时,poolPreparedStatements自动触发修改为true。      max-pool-prepared-statement-per-connection-size: 200      #对于长时间不使用的连接强制关闭      remove-abandoned: true      #数据库链接超过180秒开始关闭空闲连接 秒为单位      remove-abandoned-timeout: 180      #将当前关闭动作记录到日志  此配置项会影响性能,只在排查的时候打开,系统运行时最好关闭。      log-abandoned: true  autoconfigure:    exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure # 去除druid配置  jackson:    time-zone: Asia/Shanghai    date-format: yyyy-MM-dd HH:mm:ss  mvc:    format:      date: yyyy-MM-dd      date-time: yyyy-MM-dd HH:mm:ssforest:  timeout: 0  read-timeout: 0  log-enabled: true  log-request: true  log-response-status: true  connect-timeout: 1500  variables:    socketCenter: http://demo.hnthyy.cn:8707/socketApimybatis-plus:  configuration:    map-underscore-to-camel-case: true  global-config:    enableSqlRunner: truemanagement:  server:    port: 9091  endpoints:    web:      base-path: /actuator      exposure:        include: '*'  metrics:    export:      simple:        enabled: true      jmx:        enabled: true      prometheus:        enabled: true    distribution:      percentiles-histogram:        http:          server:            requests: false      minimum-expected-value:        http:          server:            requests: 20ms      maximum-expected-value:        http:          server:            requests: 200ms  endpoint:    metrics:      enabled: true    health:      show-details: always      probes:        enabled: true    prometheus:      enabled: trueexecute-scheduled: falseis-prod: falsetriage-notify-url: http://localhost:8082/triage/roomScreen/pushMsgsi-tj-url: http://jkglcsx.server.zhongmeihealth.com/openIntersi-api-url: http://dms.hun.hsip.gov.cn/isp-api/powercsb/1101si-access-key: 04eMGRg7beAO6vqwrZiLacV8Uy3jNn7QGDUcBOsi-secret-key: SK3Oip3a2R3NLz2xm58Mpmi69oFu96KrdKNRKglN#正式环境si-zy-fee-url: http://172.16.32.166:1000si-mz-fee-url: http://172.16.32.166:1100/mzFee#si-injury-fee-url: http://172.16.32.163:2100/siInjury#si-injury-systm-url: http://172.16.32.163:2000/siInjurythmz-api-url: http://172.16.32.160:81/thmz/api/v1#测试环境#si-zy-fee-url: http://localhost:1000#si-mz-fee-url: http://localhost:1100/mzFeesi-injury-fee-url: http://localhost:2100/siInjurysi-injury-systm-url: http://localhost:2000/siInjury#thmz-api-url: http://172.16.30.119:8089/thmz/api/v1#thmz-api-url: http://demo.hnthyy.cn:8089/thmz/api/v1appletThmzUrl: http://demo.hnthyy.cn:8089/thmz#logging:#  level:#    thyyxxk.webserver.dao: debug
 |