application.yml 15.4 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535
spring:
  main:
    allow-circular-references: true
  profiles:
    active: dev
    title: "@@project.name@@"
    description: "@@project.description@@"
    version: "@@project.version@@"
  datasource:
    dynamic:
      primary: master #设置默认的数据源或者数据源组,默认值即为master
      seata: false
      datasource:
        master:
          druid:
            # 最小连接数
            min-idle: 10
            # 最大连接数
            max-active: 300
            # 如果当前使用Oracle,把这个值设置为100。
            max-open-prepared-statements: -1
            # druid mysql 验证语句
            validation-query: select 1 FROM DUAL
            # druid pgsql 验证语句
            #validation-query: select 1
            # druid oracle 验证语句
            #validation-query: select 1 from dual
            testWhileIdle: true
            # 借用连接时执行validationQuery检测连接是否有效,做了这个配置会降低性能
            testOnBorrow: false
            # 归还连接时执行validationQuery检测连接是否有效,做了这个配置会降低性能
            testOnReturn: false
            pool-prepared-statements: true #是否缓存preparedStatement,mysql5.5+建议开启
            max-pool-prepared-statement-per-connection-size: 20 #当值大于0时poolPreparedStatements会自动修改为true
            removeAbandoned: false
  http:
    encoding:
      enabled: true
      force: true
      charset: UTF-8
    messages:
      encoding: UTF-8
  servlet:
    multipart:
      maxFileSize: 1024MB
      maxRequestSize: 1024MB
  freemarker:
    template-loader-path: classpath:/templates/ #模板加载路径 按需配置
    charset: UTF-8
  redis:
    timeout: 5000
    lettuce:
      pool:
        max-active: 200
        max-idle: 200
        min-idle: 5
  jms:
    pub-sub-domain: true
    cache:
      enabled: false
  activemq:
    in-memory: false
    pool:
      enabled: true
    packages:
      trust-all: true
      trusted: com.hotent.activemq.model,com.hotent.base.jms,java.util,java.lang,com.hotent #信任所有的包
  kafka:
    bootstrap-servers: 192.168.1.119:9092
  rocketmq:
    namesrvAddr: 192.168.1.31:9876
  messages:
    basename: i18n/messages
    encoding: UTF-8
  mvc:
    servlet:
      load-on-startup: 1 # 启动时初始化dispatchServlet 提高系统启动后初次访问的速度

# 服务端端口
server:
  port: 8088
  address: 0.0.0.0
  # 链接建立超时时间(单位:毫秒)
  connection-timeout: 30000
  contextPath: /
  tomcat:
    uri-encoding: UTF-8
    # 最小线程数
    min-spare-threads: 8
    # 最大线程数 默认值200
    max-threads: 2000
    # 最大链接数 默认值 8192
    max-connections: 8192
    # 最大等待队列长度
    accept-count: 100
  compression:
    enabled: true
    mime-types: "text/html,text/xml,text/plain,text/css,text/javascript,application/javascript,application/json"
    min-response-size: 1024

# 是否启用队列,默认的队列名和订阅名
jms:
  enable: true
  other-queue-enable: false
  other-queue-name: eipOtherQueue
  queue:
    name: eipQueue_tt
  topic:
    name: eipTopic_tt

# 指定可跨域的域名
cross:
  allowOrigin:

# 配置打印SQL语句
logging:
  config: classpath:config/logback-spring.xml
management:
  # 忽略ldap的健康检查
  health:
    LDAP.enabled: false
  add-application-context-header: false
  endpoints:
    web:
      exposure:
        include: health,info,cert

info:
  app:
    encoding: "@@project.build.sourceEncoding@@"
    java:
      source: "@@java.version@@"
      target: "@@java.version@@"

banner:
  charset: UTF-8

mybatis-plus:
  configuration:
    # 对通用查询启用二级缓存,默认不启用
    cache-enabled: false
    call-setters-on-nulls: true
    jdbc-type-for-null: 'null'
    # 打印执行的SQL语句及返回的数据
#    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  global-config:
    db-config:
      update-strategy: IGNORED # FieldStrategy
  #人大金仓 类转换器
  type-handlers-package: com.hotent.base.kingbaseTypeHandler


mybatis:
  typeAliasesPackage: com.hotent.base.entity
  mapperLocations: classpath*:mapper/*.xml
  typeHandlersPackage: com.hotent.base.typehandle

# token生成配置
jwt:
  header: Authorization
  secret: mySecret
  feignSecret: myFeignSecret
  # 是否单用户登录(启用时:一个账号在PC和移动端只允许登录一次)
  single: false
  # 严格校验模式(必须单用户登录时才生效,严格校验模式下:加入token的状态管理)
  stricty: false
  expiration: 86400 # 单位秒
  # 是否开启Basic认证(注意开启该配置项有一定的被侵入风险)
  basic: false

# 系统中发送邮件的账号
mail:
  host: smtp.qq.com
  port: 25
  ssl: false
  nickName: "eip7管理员"
  username: 1192668375@qq.com
  password: bpzgyqhznjnnihje

system:
  # 默认的附件上传目录,会被系统属性中配置覆盖
  attachment:
    type: folder
    path: /home/eip/attachment
  bpm:
    engineName: eip7
    # flase activiti在启动时,会对比数据库表中保存的版本,如果没有表或者版本不匹配,将抛出异常。(生产环境常用) true activiti会对数据库中所有表进行更新操作。如果表不存在,则自动创建。(开发时常用)
    databaseSchemaUpdate: true
  # 多租户
  saas:
    # 是否开启多租户模式,注意:非租户模式和租户模式下数据有差异性,切换后可能导致数据异常
    enable: true
    # 忽略租户隔离的物理表名
    ignoreTables:
  # 异步线程池配置
  thread:
    # 连接池最小线程数(设部署应用的服务器CPU内核数为N,该值设置为:2N+1)
    core-pool-size: 150
    # 连接池最大线程数(当异步任务超过任务队列容量时,当前线程数会从最小线程数往最大线程数增长。可以设置最大线程数与最大并发数相等,例如:200并发,单服务器部署时,设置最大线程数为200)
    max-pool-size: 2000
    # 空闲线程存活时间
    keep-alive-seconds: 60
    # 任务队列容量
    queue-capacity: 100

druid:
  # 是否显示sql分析页面
  stat.enable: true
  # druid拦截后不抛出异常
  wall.throwException: false

# 附件在线预览
file:
  file.dir: /home/eip/conver/
  office:
    # 是否启用openoffice组件(设置为true也需要在服务器上安装openoffice才能使用)
    enable: true
    home: /opt/openoffice4
    #office启动端口
    port: 9093
  simText: txt,html,xml,java,properties,sql
  media: mp3,mp4,flv,rmvb,wmv
  converted.file.charset: utf-8
# FTP settings
FTP:
  FTP.url: 192.168.1.141
  FTP.username: lj
  FTP.password: 123
  FTP.port: 21

# 阿里云OSS settings
aliyun:
  oss.endpoint: http://oss-cn-guangzhou.aliyuncs.com
  oss.accessKeyId: LTAI4GBPb8Qwz6fdhejwpJqq
  oss.accessKeySecret: szsQO6up7wkOsFUXmpZyMKVAL3c4h6
  oss.bucketName: hotent

# 单点登录配置
sso:
  enable: true
  mode: jwt # jwt cas oauth
  cas:
    url: http://127.0.0.1/cas #CAS服务地址
  oauth:
    url: http://127.0.0.1 #oauth2服务地址
    loginPath: /oauth/authorize
    tokenPath: /oauth/token
    checkPath: /oauth/check_token
    clientId: eip7
    secret: flossy
    accesstokenKey: access_token #获取oauth账号时的key
    checkPathKey: access_token #获取oauth验证token的地址
    usernameKey: username #获取用户账号时的key

# 分布式事务
seata:
  enable: false
  enabled: false
  application-id: ${spring.application.name}
  tx-service-group: ${spring.application.name}
  enable-auto-data-source-proxy: true
  use-jdk-proxy: false
  excludes-for-auto-proxying:
  data-source-proxy-mode: AT
  client:
    rm:
      async-commit-buffer-limit: 1000
      report-retry-count: 5
      table-meta-check-enable: false
      report-success-enable: false
      saga-branch-register-enable: false
      lock:
        retry-interval: 10
        retry-times: 30
        retry-policy-branch-rollback-on-conflict: true
    tm:
      degrade-check: false
      degrade-check-period: 2000
      degrade-check-allow-times: 10
      commit-retry-count: 5
      rollback-retry-count: 5
    undo:
      data-validation: true
      log-serialization: jackson
      log-table: undo_log
      only-care-update-columns: true
    log:
      exceptionRate: 100
  service:
    vgroup-mapping:
      eip-portal: seata-server #key: value key 为微服务名称 value为seata服务名称
      eip-uc: seata-server
      eip-form: seata-server
      eip-bpm-model: seata-server
      eip-bpm-runtime: seata-server
    grouplist:
      default: 192.168.1.100:8091
    enable-degrade: false
    disable-global-transaction: false
  transport:
    shutdown:
      wait: 3
    thread-factory:
      boss-thread-prefix: NettyBoss
      worker-thread-prefix: NettyServerNIOWorker
      server-executor-thread-prefix: NettyServerBizHandler
      share-boss-worker: false
      client-selector-thread-prefix: NettyClientSelector
      client-selector-thread-size: 1
      client-worker-thread-prefix: NettyClientWorkerThread
      worker-thread-size: default
      boss-thread-size: 1
    type: TCP
    server: NIO
    heartbeat: true
    serialization: seata
    compressor: none
    enable-client-batch-send-request: true
  config:
    type: file
    consul:
      server-addr: 127.0.0.1:8500
    apollo:
      apollo-meta: http://192.168.1.204:8801
      app-id: seata-server
      namespace: application
    etcd3:
      server-addr: http://localhost:2379
    nacos:
      namespace:
      serverAddr: 127.0.0.1:8848
      group: SEATA_GROUP
      userName: ""
      password: ""
    zk:
      server-addr: 127.0.0.1:2181
      session-timeout: 6000
      connect-timeout: 2000
      username: ""
      password: ""
  registry:
    type: eureka
    consul:
      server-addr: 127.0.0.1:8500
    etcd3:
      serverAddr: http://localhost:2379
    eureka:
      weight: 1
      service-url: ${eureka.client.service-url.defaultZone}
    nacos:
      application: seata-server
      server-addr: 192.168.1.100:8848
      namespace:
      userName: ""
      password: ""
    redis:
      server-addr: 192.168.1.100:6379
      db: 0
      password:
      timeout: 0
    sofa:
      server-addr: 127.0.0.1:9603
      region: DEFAULT_ZONE
      datacenter: DefaultDataCenter
      group: SEATA_GROUP
      addressWaitTime: 3000
      application: default
    zk:
      server-addr: 127.0.0.1:2181
      session-timeout: 6000
      connect-timeout: 2000
      username: ""
      password: ""

# 注册中心
eureka:
  client:
    healthcheck:
      enabled: true
    service-url:
      defaultZone: http://127.0.0.1:8761/eureka/
  instance:
    lease-expiration-duration-in-seconds: 30
    lease-renewal-interval-in-seconds: 10
    # 注册到eureka时使用ip地址
    prefer-ip-address: true
    # eureka会自动识别每个微服务的ip地址,如果需要指定ip则配置该属性
    # ip-address: 127.0.0.1
    instance-id: ${spring.cloud.client.ip-address}:${server.port}

# feign配置
feign:
  hystrix:
    enabled: true
  httpclient:
    enabled: true
  client:
    config:
      default:
        connectTimeout: 6000000
        readTimeout: 6000000
        loggerLevel: full

# 断路器配置
hystrix:
  metrics:
    enabled: true
  command:
    default:
      execution:
        isolation:
          strategy: SEMAPHORE # THREAD  SEMAPHORE
          semaphore:
            maxConcurrentRequests: 200 # 默认情况下下面两个值都是10,也就是超过10个的并发会直接进入fallback方法,不会去真正请求
          thread:
            timeoutInMilliseconds: 120000 #缺省为1000
      fallback:
        isolation:
          semaphore:
            maxConcurrentRequests: 200 # 默认情况下下面两个值都是10,也就是超过10个的并发会直接进入fallback方法,不会去真正请求

# 负载均衡配置
ribbon:
  eureka:
    enabled: true

# uniapp集成的个推
unipush:
  appId: ShVpFTXPhu9SIHivD2Kon6
  appKey: YJWwctAp916G9uoWfPwh2A
  appSecret: uqgpgsFSLx5RgUG5nvlpZ4
  masterSecret: MJJ8lWVDAX77cr9kLUuBY9
  host: http://api.getui.com/apiex.htm

xxl:
  job:
    enabled: false #如果使用xxl则不使用quartz
    accessToken: ''
    admin:
      addresses: http://192.168.1.100:8120/xxl-job-admin
    executor:
      address: ''
      appname: ${spring.application.name}
      ip: ''
      logpath: /data/applogs/xxl-job/jobhandler
      logretentiondays: 30
      port: 9999

# 是否解决跨域问题
cors:
  enable: true

# 是否开启新版本
NewVersion:
  open: true
  version: v2
# 外部接口前缀
openApi:
  prefix: openApi

security:
  enabled: false # 是否开始SqlInjectFilter检验
  ignoreUnknownFields: false #RequestBody接口的参数是否可以忽略不认识的属性 如果忽略有可能造成API成批分配的漏洞 false 忽略 true 不忽略
  sql:
    excludes:
      - /swagger-resources/configuration/ui
      - /swagger-resources
      - /swagger-resources/configuration/security
      - /swagger-ui.html
      - /proxy.stream
      - /hystrix.stream
      - /druid/*
      - /hystrix/*
  xss:
    excludes:
      - /form/form/v1/saveForm # 保存表单设计
      - /auth
      - /form/form/v1/saveFormJs # 保存表单设计引入的脚本
      - /portal/sysIndexLayoutManage/sysIndexLayoutManage/v1/saveLayout #门户设计保存门户
      - /portalNewsNotice/v1/* #保存新闻公告非外部链接使用富文本时
      - /form/dataTemplate/v1/save #数据应用表单列表的保存
      - /form/dataTemplate/v1/saveTemplate #数据应用表单列表编辑模板的保存
      - /form/query/querySqldef/save #数据应用数据列表的保存
      - /portalAppParam/v1/ #应用模块——pc模块——管理某个模块——应用详情——保存的详情里面有富文本类型时
      - /flow/def/v1/saveProp #流程设计——流程定义——流程的其他设置,保存含有脚本的设置
      - /flow/MsgTemplate/v1/save #流程中心——辅助功能——消息模板保存
      - /runtime/conditionScript/v1/testScript #流程中心——辅助功能——人员脚本-测试脚本
      - /runtime/script/v1/save #流程中心——辅助功能——常用脚本的保存
      - /portal/sysIndexColumn/sysIndexColumn/v1/save #门户设计——保存栏目
      - /runtime/script/v1/executeScript #测试脚本
      - /form/template/v1/save #模板管理(比如宏模板)
      - /portalUrlPermission/v1/insert #外部接口授权
      - /flow/node/v1/saveDefConf #保存流程配置
      - /flow/node/v1/branchConditionSave #分支网关保存
      - /flow/def/v1/webDefSave #保存流程定义
      - /form/formServiceController/v1/importFormAndBo #导入表单和Bo
      - /flow/def/v1/importCheck #表单校验
      - /form/query/queryView/saveTemplate #视图模板
      - /form/query/queryView/save #保存视图
eip:
  tokenParameter:
    allowUrls:
      - /download
      - /onlinePreview
      - /picturesPreview
      - /imagesPreview
      - /getPreviewFile/**
      - /temps/**
  feignClient:
    uc: eip-uc
    portal: eip-portal
    form: eip-form
    auth: eip-auth
    bpmModel: eip-bpm-model
    bpmRuntime: eip-bpm-runtime

# 是否记录系统日志
syslog:
  enabled: false
# 数据归档单次同步数据限制条数,单次同步次数不能超过1000否则会报错
configFormData:
  limitNumber: 1000
# 生产环境需要设置为false 关闭在线接口文档
swagger:
  enable: false
#todo:
#  enabled: true
#  activemq:
#    broker-url: tcp://localhost:61617
#    user:
#    password:
#  kafka:
#    bootstrap-servers: localhost:9093
#  rocketmq:
#    namesrvAddr: localhost:9876